preg_match表达式用于提取除“[]”之外的所有内容

时间:2016-07-15 01:03:30

标签: php regex preg-match

<some string>[]<somestring>

例如

variable[]_abc

如何在php中使用[]从字符串中获取除preg_之外的所有内容?

2 个答案:

答案 0 :(得分:1)

preg_replace('/\[\]/','',$string);

答案 1 :(得分:1)

如果您只想删除[],请使用str_replace

$newstring = str_replace('[]', '' $string);

不需要正则表达式来删除静态字符。