正则表达式匹配整个句子。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式匹配整个句子。相关的知识,希望对你有一定的参考价值。

I\'m trying to find an expression to match a whole sentence. So really the pattern is the regex of the subject.
  1. $subject = "Check out the newest #WordPress premium theme marketplace";
  2.  
  3. $pattern = "/Check out the newest #WordPress premium theme marketplace http://themelit.com/$";
  4.  
  5. if ( preg_match_all( $pattern, $subject, $matches ) )
  6. $msg = array( "code" => "success", "message" => __("Thanks for tweeting!" ) );
  7. else
  8. $msg = array( "code" => "error", "message" => __("You haven't tweeted anything yet." ) );

以上是关于正则表达式匹配整个句子。的主要内容,如果未能解决你的问题,请参考以下文章

使用正则表达式匹配MYSQL中句子中的单词

正则表达式整个单词[重复]

JS Pig诗匹配子字符串与正则表达式

正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性

循环通过 python 正则表达式匹配

获取正则表达式匹配后的文本