问问题
660 次
2 回答
2
尝试这个
String s = "/ontology/concepts.owl#Altitude>, /ontology/Concepts.owl#Height>";
Matcher m = Pattern.compile("#(.+?)>").matcher(s);
while(m.find()) {
System.out.println(m.group(1));
}
输出
Altitude
Height
于 2013-05-25T10:25:52.137 回答
0
检查Java 的正则表达式包。这很简单。您需要做的就是创建符合您要求的正则表达式
于 2013-05-25T10:24:32.907 回答