dqrnsg6439 2011-02-22 21:25 采纳率: 100%
浏览 46
已采纳

php解析具有多个分隔符的字符串

I want to parse string in php with multiple delimiters I use this code

$pattern = '/[, ]/';

$array = preg_split( $pattern, $string);

This work fine , but I want to use and "[" and "]" as delimiters!!

How can I include this delimiters in $pattern. I try with $pattern = '/[, []]/'; and $pattern = '/[, ]/'; but error occurred.

Thanks

  • 写回答

1条回答 默认 最新

  • doushai7225 2011-02-22 21:27
    关注

    Escaping the brackets should work.

    \[
    

    Related: preg_quote()

    Edit: use json_decode() instead.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?