使用 Doulos TREV
我下载了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.