正则表达式 – 为什么常规表达式不能使用关键字而不是字符?

前端之家收集整理的这篇文章主要介绍了正则表达式 – 为什么常规表达式不能使用关键字而不是字符?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好的,我几乎不了解RegEx的基础知识,但是为什么他们不能设计它来使用关键字(如sql),而不是一些隐秘的通配符和符号?

是因为RegEx在运行时被解释/解析了吗? (未编译)

或者可能是写速度?考虑到当您学习一些“简单”字符组合时,更容易键入1个字符而不是关键字?

你真的想要这个
Pattern findGamesPattern = Pattern.With.Literal(@"<div")
    .WhiteSpace.Repeat.ZeroOrMore
    .Literal(@"class=""game""").WhiteSpace.Repeat.ZeroOrMore.Literal(@"id=""")
    .NamedGroup("gameId",Pattern.With.Digit.Repeat.OneOrMore)
    .Literal(@"-game""")
    .NamedGroup("content",Pattern.With.Anything.Repeat.Lazy.ZeroOrMore)
    .Literal(@"<!--gameStatus")
    .WhiteSpace.Repeat.ZeroOrMore.Literal("=").WhiteSpace.Repeat.ZeroOrMore
    .NamedGroup("gameState",Pattern.With.Digit.Repeat.OneOrMore)
    .Literal("-->");

好的,但是it’s your funeral,男人.

下载这里的库:
http://flimflan.com/blog/ReadableRegularExpressions.aspx

原文链接:https://www.f2er.com/regex/357004.html

猜你在找的正则表达式相关文章