我使用php,我需要用正則表達式拆分字符串(xpath)。 我只需要一個正則表達式來分割下面的「輸入」。我希望有一個人可以幫助我。正則表達式拆分xpath
輸入: /路徑/到/節點/測試
輸出:
$result = array(
"path",
"to",
"node",
"test",
);
輸入: /路徑/到[子= 「string」AND sub2 =「string2」]/node/test
輸出:
$result = array(
'path',
'to[sub="string" AND sub2="string2"]',
'node',
'test',
);
輸入: /路徑/到[子/路徑/要= 「字符串」] /節點/測試
輸出:
$result = array(
'path',
'to[sub/path/to="string"]',
'node',
'test',
);
以前謝謝!
問候 薩沙
嘗試我的編輯和 –