编写这个正则表达式的更好方法是什么?

发布于 2024-08-26 22:40:16 字数 466 浏览 4 评论 0原文

我正在将 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 技术交流群。

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

发布评论

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

评论(2

转身以后 2024-09-02 22:40:16

使用 xml 解析器,不要使用正则表达式来解析 xml。

Use an xml parser, don't use regex to parse xml.

意中人 2024-09-02 22:40:16

如果 元素内没有其他标签,我会将该部分更改为:

<education>([^<>]*)</education>

如果可能,我会在您使用 .*.对于 language 属性,它将采用以下形式:

language="([^"]*)"

If there are no other tags inside the <education> element, I would change that part to:

<education>([^<>]*)</education>

If possible, I would use the same technique everywhere else you're using .*. In the case of the language attribute, it would take this form:

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