Preg_match 如果字符串以“00”{number} 或“+”{number} 开头
我必须测试字符串是否以 00 开头或以 + 开头。
伪代码:
Say I have the string **0090** or **+41**
if the string begins with **0090** return true,
elseif string begins with **+90** replace the **+** with **00**
else return false
最后两位数字可以是 0-9。
我如何在 php 中做到这一点?
I have to test if a string begins with 00 or with +.
pseudocode:
Say I have the string **0090** or **+41**
if the string begins with **0090** return true,
elseif string begins with **+90** replace the **+** with **00**
else return false
The last two digits can be from 0-9.
How do I do that in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试:
You can try:
中间条件不会做任何事情,除非 $str 是一个引用。
The middle condition won't do anything though, unless $str is a reference.