不区分大小写的 Scala 解析器组合器

发布于 2024-11-09 12:20:38 字数 195 浏览 0 评论 0原文

我正在尝试创建一种语言,并且其中的某些部分我希望不区分大小写。我确信这很容易,但我一直找不到它。

编辑: 重读让我对这个问题感到羞愧。 这里是一个失败的测试,它解释了我的意思。

I'm trying to create a language, and there are some parts of it that I want to be case insensitive. I'm sure this is something easy, but I haven't been able to find it.

Edit:
Re-reading makes me ashamed of this question. Here is a failing test that explains what I mean.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赴月观长安 2024-11-16 12:20:38

使用正则表达式而不是文字。

lazy val caseSensitiveKeyword: Parser[String] = "casesensitive"
lazy val caseInsensitiveKeyWord: Parser[String] = """(?i)\Qcaseinsensitive\E""".r

(请参阅 java.util 的文档。 Pattern 有关所使用的正则表达式语法的信息。)

如果您经常这样做,您可以 pimp String 来简化语法:

class MyRichString(str: String) {
  def ignoreCase: Parser[String] = ("""(?i)\Q""" + str + """\E""").r
}

implicit def pimpString(str: String): MyRichString = new MyRichString(str)

lazy val caseInsensitiveKeyword = "caseinsensitive".ignoreCase

Use a regular expression instead of a literal.

lazy val caseSensitiveKeyword: Parser[String] = "casesensitive"
lazy val caseInsensitiveKeyWord: Parser[String] = """(?i)\Qcaseinsensitive\E""".r

(See the docs for java.util.Pattern for info on the regex syntax used.)

If you're doing this frequently you could pimp String to simplify the syntax:

class MyRichString(str: String) {
  def ignoreCase: Parser[String] = ("""(?i)\Q""" + str + """\E""").r
}

implicit def pimpString(str: String): MyRichString = new MyRichString(str)

lazy val caseInsensitiveKeyword = "caseinsensitive".ignoreCase
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文