如何执行 preg_replace() 来删除除“Post”之外的任何内容还是“帖子”?
我有一个字符串,它返回各种内容,如数字、空格等。我想要的只是“Post”或“Posts”。有人可以给我一个如何在 PHP 中执行此操作的示例吗?
I have a string that returns various stuff like numbers, spaces, etc. All I want from it is just "Post" or "Posts". Can someone give me an example of how to do this in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,像这样使用
preg_match
:Yup, use
preg_match
like so:如果您只想检测单词
Post
是否在字符串中,那么使用strpos()
会更有效。If you just want to detect if the word
Post
is in the string, then usingstrpos()
would be far more efficient.如果您正在测试字符串是否包含单词“Posts”,那么您可以使用如下内容:
if you are testing to see if the string contains the word "Posts" then you could use something like this:
如果我没看错的话,似乎您不需要字符串 Post/Posts,只要它们存在即可。如果是这种情况,最快的方法是使用
strpos
函数。您可以按如下方式使用它:
If I'm reading that correctly, it seems that you don't need the string Post/Posts, just if they exist. If that is the case the fastest way would be to use the
strpos
function. You could use it as follows: