text 正则表达式备忘单

Posted

tags:

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

/,.+$/  // This expression matches anything that is after a , if in one line 

for a string of this type:

"Friday May 2, 9am"
"jbjbkjbkjb"if 

/,.+$/ expression would only match [ , 9am" ] if m flag is enabled i.e. /,.+$/m

. // matches any character except line breaks
+ // match 1 or more of preceding token
$ // matches the end of the string, or the end of a line if multiline flag (m) is enabled

以上是关于text 正则表达式备忘单的主要内容,如果未能解决你的问题,请参考以下文章

RegEX 备忘清单_开发速查表分享

jmeter 正则提取器

JS 常用正则表达式备忘录

text Javascript OO备忘单

text vs代码备忘单

text Capybara备忘单