正则表达式匹配字符串

时间:2017-01-25 22:19:57

标签: regex

我们说我的文字是a123456。我想要一串b123456来匹配。基本上,如果除了第一个字符之外所有字符都相同,则匹配#39;我用正则表达式要求不可能吗?

3 个答案:

答案 0 :(得分:0)

使用点(。)匹配任何字符。所以,可能的正则表达式是:

  /^.123456$/

答案 1 :(得分:0)

如果您想使用zero length assertion with regex,可以通过以下方式lookbehind方法:

(?<=\w)your_value$ // your_value should be text which you want to check

答案 2 :(得分:0)

我认为你可以自己解决这个问题。这并不难,只需要你和Regex之间的一些理解。为什么不通过以下链接尝试自己制作正则表达式。

https://www.talentcookie.com/2015/07/regular-expressions/

https://www.talentcookie.com/2015/07/lets-practice-regular-expression/

https://www.talentcookie.com/2016/01/some-useful-regular-expression-terminologies/