标签: php regex preg-match
<some string>[]<somestring>
例如
variable[]_abc
如何在php中使用[]从字符串中获取除preg_之外的所有内容?
[]
preg_
答案 0 :(得分:1)
preg_replace('/\[\]/','',$string);
答案 1 :(得分:1)
如果您只想删除[],请使用str_replace。
$newstring = str_replace('[]', '' $string);
不需要正则表达式来删除静态字符。