java-使用正则表达式提取XML中的属性值

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE ... ]> 
<abc-config version="THIS" id="abc">
...
</abc-config>

大家好,

在上面的代码中,如何在Groovy / Java中使用Regex提取version属性的值?

谢谢.

解决方法:

用于处理此问题的正则表达式可能类似于:

/<\?xml version="([0-9.]+)"/

我将为您提供10000堂关于不使用正则表达式解析标记语言的讲座之一.

编辑:The One whose Name cannot be expressed in the Basic Multilingual Plane, He compelled me.

上一篇:Grails Spring bean定义


下一篇:boost asio异步读写网络聊天程序client 实例具体解释