我只想对第一个字符(phone 数字)使用 regex_replace
I want to use the regex_replace only for the first character (phone number)
我只想对第一个字符使用 regex_replace 或 regexp_extract (phone 数).
例如:
89265558855 should replace +79265558855
仅当 +7 上的前 8 时才替换
如果我使用{$phone|regex_replace:"/8/":"+7"}
我有 例如:
89265558855 after replace I have +7926555+7+755
替换所有 8 个数字
使用 start of string anchor ^
只匹配第一个字符,如下所示:
{$phone|regex_replace:"/^8/":"+7"}
我只想对第一个字符使用 regex_replace 或 regexp_extract (phone 数).
例如:
89265558855 should replace +79265558855
仅当 +7 上的前 8 时才替换
如果我使用{$phone|regex_replace:"/8/":"+7"} 我有 例如:
89265558855 after replace I have +7926555+7+755
替换所有 8 个数字
使用 start of string anchor ^
只匹配第一个字符,如下所示:
{$phone|regex_replace:"/^8/":"+7"}