-2
編輯: 我將接收可以是任何字符串的用戶輸入。 我只想標記那些具有特定結構的字符串。preg_match使用特定字符串結構的正則表達式
// Flag
$subject = 'Name 1 : text/Name 2 : text';
// Flag
$subject = 'Name 1 : text/Name 2 : text/Name 3';
// Flag
$subject = 'Name 3/Name 2/Name 3';
// Do NOT flag
$subject = 'Name 1 : text, Name 2, text, Name 3';
// Do NOT flag
$subject = 'This is another string';
因此,基本上標記每個至少有1個正斜槓的字符串。 這可以用正則表達式來完成嗎? 謝謝!
您是否在尋找['explode(':',$ subject)'](http://www.php.net/explode)? – h2ooooooo
我在尋找正則表達模式 – user558134
你想要什麼輸出?規則是什麼?你有什麼嘗試? – h2ooooooo