Использование preg_replace для форматирования - PullRequest
0 голосов
/ 11 ноября 2009

Возникли проблемы с рисунком и заменой. Как я могу сделать замену эхо конечного продукта, такого как

INSERT INTO `table` (`person`, `file`) VALUES
('test','test'),
('test2','test2'),
('test3','test3');

Я пытаюсь вставить строку в SQL, но мне нужно отформатировать текущую строку ниже, чтобы сделать это, и мне нужно иметь последнюю часть строки test3: test3 или любой текст закрыть шаблон SQL ('test3', 'test3');

<?php
$string = 'test:test test2:test2 test3:test3';
$pattern = '';
$replacement = '';
echo preg_replace($pattern, $replacement, $string);
?>

Кроме того, может ли он иметь такую ​​строку? 'test@test.com:test test2:test2', тогда как электронная почта будет перед двоеточием ВСЕГДА.

1 Ответ

1 голос
/ 12 ноября 2009

Попробуйте что-то вроде этого:

$string = 'test:test test2:test2 test3:test3';
$patterns = array("/([^\s:]+):([^\s:]+)/", "/\s++\(/");
$replacements = array("('$1', '$2')", ", (");
$sql = 'INSERT INTO `table` (`person`, `file`) VALUES ' . preg_replace($patterns, $replacements, $string) . ';';
echo $sql . "\n";

Объяснение:

Regex 1
  ([^\s:]+)   # match one or more chars other than white space chars and colons and store it in group 1
  :           # match a colon 
  ([^\s:]+)   # match one or more chars other than white space chars and colons and store it in group 2 
Replacement 1
  (           # insert a '('
  '$1'        # insert what is matched in group 1 and surround it with single quotes
  ,           # insert ', '
  '$2'        # insert what is matched in group 2 and surround it with single quotes
  )           # insert a ')'

Regex 2
  \s++        # match one or more white space chars
  \(          # match a '('
Replacement 2
  , (         # insert ', ('
...