正则表达式
正则表达式(Regular Expression,缩写为 regex 或者 regexp)是一组特殊文本,可以用来从文本中找出满足你想要的格式的部分。From learn regex the easy way
1 | "the" => the fat cat sat on the mat. |
表示使用正则表达式 “the”(第一行) 可以匹配到字符串 “the fat cat sat on the mat” 中的 “the”(第二行)
正则表达式(Regular Expression,缩写为 regex 或者 regexp)是一组特殊文本,可以用来从文本中找出满足你想要的格式的部分。From learn regex the easy way
1 | "the" => the fat cat sat on the mat. |
表示使用正则表达式 “the”(第一行) 可以匹配到字符串 “the fat cat sat on the mat” 中的 “the”(第二行)