我有一個像這兩個環節:如何解析並將部分字符串放入數組中?
http://www.something.com/something/edit/id/$id/type/$type
而且
http://www.something.com/something/edit/id/:id/type/:type/collection/:collection
,因爲我不擅長PHP的正則表達式,我想從這兩個環節提取此:
// first link
array(
'id', 'type',
);
// second link
array('id', 'type', 'collection');
是否可以使用PHP的RegEx解析和提取這些$id
和:type
部分字符串?
謝謝大家的幫助!
編輯:
爲了你下的選民,請已瞭解,我想提取所有這些項目開始$
或:
並與/
或空字符串結束,並推那些以這種格式匹配到一個新的數組。
您可能不想爲此使用正則表達式。 – 2014-09-04 11:41:24
我想將所有以'$'或':'開始並以'/'或空字符串結尾的部分抽取到數組中。 – zlomerovic 2014-09-04 11:41:59
@ TheParamagneticCroissant - 那該怎麼做呢? – zlomerovic 2014-09-04 11:44:08