Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

php - Regex to remove single characters from string

Consider the following strings

breaking out a of a simple prison
this is b moving up
following me is x times better

All strings are lowercased already. I would like to remove any "loose" a-z characters, resulting in:

breaking out of simple prison
this is moving up
following me is times better

Is this possible with a single regex in php?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)
$str = "breaking out a of a simple prison
this is b moving up
following me is x times better";
$res = preg_replace("@\b[a-z]\b ?@i", "", $str);
echo $res;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...