编写这个正则表达式的更好方法是什么?
我正在将 XML 子项转换为元素参数,并在 Textmate 中使用了一个肮脏的正则表达式脚本。我知道点 (.) 不会搜索换行符,所以这就是我解决它的方法。
搜索
language="(.*)"
(.*)<education>(.*)(\n)?(.*)?(\n)?(.*)?(\n)?(.*)?</education>
(.*)<years>(.*)</years>
(.*)<grade>(.*)</grade>
替换
grade="$13" language="$1" years="$11">
<education>$3$4$5$6$7$8$9</education>
我知道有更好的方法可以做到这一点。请帮助我进一步培养我的正则表达式技能。
I am converting XML children into the element parameters and have a dirty regex script I used in Textmate. I know that dot (.) doesn't search for newlines, so this is how I got it to resolve.
Search
language="(.*)"
(.*)<education>(.*)(\n)?(.*)?(\n)?(.*)?(\n)?(.*)?</education>
(.*)<years>(.*)</years>
(.*)<grade>(.*)</grade>
Replace
grade="$13" language="$1" years="$11">
<education>$3$4$5$6$7$8$9</education>
I know there's a better way to do this. Please help me build my regex skills further.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 xml 解析器,不要使用正则表达式来解析 xml。
Use an xml parser, don't use regex to parse xml.
如果
元素内没有其他标签,我会将该部分更改为:如果可能,我会在您使用
.*.对于
language
属性,它将采用以下形式:If there are no other tags inside the
<education>
element, I would change that part to:If possible, I would use the same technique everywhere else you're using
.*
. In the case of thelanguage
attribute, it would take this form: