标签: php preg-replace str-replace
我有一些字符串有自定义颜色变量,以“§”字符开头,之后有一个字符作为颜色定义。所以字符串看起来像这样:§fc§9o§7l§1o§fr我要解析它,看起来像这样:color。
§fc§9o§7l§1o§fr
color
我搜索了preg_replace,str_replace,substr和strstr,但无法知道如何执行此操作。
preg_replace
str_replace
substr
strstr
答案 0 :(得分:0)
我已经从4chan的芬兰语版本中得到答案,我也会在这里发布:
$string = preg_replace('/\§./', '', $string);