函数只返回字符串开头的大写字母?
我正在尝试从 PHP 中的字符串中检索前几个大写字母,但我不确定是否有特定的函数可以执行此操作。我应该诉诸使用正则表达式吗?如果是这样,怎么办?
以下是应返回内容的示例(INPUT => OUTPUT):
ABCD => ABCD
Abcd => A
ABcd => AB
aBCD => empty string ""
abcd => empty string ""
任何帮助将不胜感激:)
-Chris
I'm trying to retrieve the first couple of capital letters from a string in PHP, but I'm not sure if there's a specific function to do this. Should I perhaps resort to using regex? If so, how?
Here's an example of what should be returned (INPUT => OUTPUT):
ABCD => ABCD
Abcd => A
ABcd => AB
aBCD => empty string ""
abcd => empty string ""
Any help would be appreciated :)
-Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这种情况下,正则表达式可以为您解决问题。试试这个:
如果返回 true,那么你的大写字母应该在 $matches[1] 中。
Regex would do the trick for you in this case. Try this:
If this returns true, your capital letters should be in $matches[1].
我认为你应该使用:
I think you should use:
尝试:
输出:
Try:
Output: