使用 Doulos TREV

发布于 2024-10-02 00:25:42 字数 81 浏览 1 评论 0原文

我下载了 Doulos trev-tcl regexp gui - 但我无法启动它。是否应该添加到正则表达式中以便与搜索字符串匹配的任何前缀和后缀?

i downloaded Doulos trev-tcl regexp gui- but i cant get it started. is there any prefix and suffix that should be added to the regexp in order to get a match with the search string?

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

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

发布评论

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

评论(1

芸娘子的小脾气 2024-10-09 00:25:42

使用 Tcl 通常的 RE 匹配策略,它会在字符串中的任何位置查找匹配项(即,除非您特别要求,否则匹配项不会被锚定)。如果您的匹配空间是“abcde”,那么使用“c”的 RE 应该仅匹配第三个字母。我建议从同样简单的事情开始尝试。

With Tcl's usual RE matching strategy, it looks for a match anywhere in the string (i.e., matches are not anchored unless you specifically ask for it). If your match space is “abcde” then using an RE of “c” should match the third letter only. I suggest trying something equally simple to start out with.

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