Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
192 views
in Technique[技术] by (71.8m points)

php - I want to use the regex_replace only for the first character (phone number)

I want to use the regex_replace or regexp_extract only for the first character (phone number).

For example:

89265558855 should replace +79265558855

replace only if first 8 on +7

if I use {$phone|regex_replace:"/8/":"+7"} I have For example:

89265558855 after replace I have +7926555+7+755

replace all 8 numbers


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the start of string anchor ^ to match only the first character like so:

{$phone|regex_replace:"/^8/":"+7"}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...