-1
我有一個字符串是這樣的:正則表達式匹配一些特殊字符
hello this is my_string is-very-cool & another stuff
我怎麼能爆炸我的字符串的所有特殊字符,但允許的空間, - 和_(?)?
任何想法?
我有一個字符串是這樣的:正則表達式匹配一些特殊字符
hello this is my_string is-very-cool & another stuff
我怎麼能爆炸我的字符串的所有特殊字符,但允許的空間, - 和_(?)?
任何想法?
preg_split('/[^\w -]/', $string)
這將拆分任何不是a-z,0-9,_, - 或空格的東西。
太容易了!需要深入正則表達式!謝謝。 – greenbandit 2013-04-05 02:07:35