尋找模式的多個出現,使用正規表示式
P粉186017651
P粉186017651 2024-02-26 23:27:41
0
1
3678

我得到了這個字串:

if(條件A==值A-AND-條件B==值B-OR-條件C==值C)

我想要一個包含以下內容的陣列:

array(3) {
  [0]=>
  string(...) "conditionA==valueA"
  [1]=>
  string(...) "conditionB==valueB"
  [2]=>
  string(...) "conditionC==valueC"
}

我目前正在使用這種模式:

preg_match("/^if\((. )-(. )\)/U", $current_step_data_exploded[0], $if_statements);

但它沒有正確地滿足第三個條件。有人可以幫我嗎?

P粉186017651
P粉186017651

全部回覆(1)
P粉139351297
$string = "if(conditionA==valueA-AND-conditionB==valueB-OR-conditionC==valueC)";
$match = preg_match('/^if\((.+)\)$/', $string, $if);
if ($match) {
  $conditions = preg_split('/\-(AND|OR)\-/', $if[1]);
  print_r($conditions);
} else {
  echo "no matches.";
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板