正则表达式匹配方案

发布于 2024-08-07 20:20:17 字数 175 浏览 1 评论 0原文

方案中有没有更简单的写法

(eqv?(正则表达式匹配“0x”“0x1234”)#t)

#f

(eqv?(正则表达式匹配“0x”“1234”)#f)

#t

Is there a simpler way of writing in scheme

(eqv? (regexp-match "0x" "0x1234") #t)

#f

(eqv? (regexp-match "0x" "1234") #f)

#t

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

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

发布评论

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

评论(1

清君侧 2024-08-14 20:20:17

(regexp-match? #rx"0x" "...some-string...")

注意,#rx 表示正则表达式已预编译并包含在您的代码中。它是
这样做也更好,因为它可以保护您免于编写混乱的代码并交换
论据。

顺便说一句,类似的东西

(regexp-match? #rx"^0x" "...some-string...")

可能更有用。

另请参阅指南页面了解如何使用
PLT 中的正则表达式和参考页面
以获得完整的描述。

That would be

(regexp-match? #rx"0x" "...some-string...")

Note that the #rx means that the regexp is precompiled and included in your code. It's
also better to do that since it protects you from writing confused code and swapping the
arguments.

BTW, something like

(regexp-match? #rx"^0x" "...some-string...")

is probably more useful.

See also the Guide pages to learn how to use
regular expressions in PLT, and the reference page
for a complete description.

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