开发者

Regular expression: match single characters AND/OR groups of characters (strings) at the same time?

I'd like to be able to开发者_开发百科 match zero or more of a list of characters AND/OR match zero or more of a list of strings.

Example: Here is my 12345 test string 123456.

Target: Here is my 45 test string .

So I wish to remove 1, 2, and 3, but only remove 456 if it's a whole string.

I have tried something like /[123]+456+/gs but I know this is wrong.

Any help is appreciated.


/[123]|456/ may be what you want.


Code:

$str = "Here is my 12345 test string 123456.";
$res = preg_replace('/[123]|456/','',$str);
echo $res;

Output:

Here is my 45 test string .


For javascript, this works:

var oldString = 'Here is my 12345 test string 123456.';

var newString = oldString.replace(/[123](456)?/g, '');
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜