3

我需要正则表达式用逗号(,)分割字符串,但忽略评论部分中的逗号我在更改你的正则表达式后尝试了很多。它不成功,例如。

Command=RTRV-EQPT, Completion Code= DENY, Error Code= II:AC, Problem Description=  /* Input Inva,lid *******ACcess =iden:tifier */, Comment=null,
4

2 回答 2

1

不要重新发明轮子:这是一个易于使用的解析器

于 2012-07-31T09:29:34.803 回答
1

对于您的特定情况,为什么不先删除评论然后拆分,它可能会简化您的问题。

txt.replace("/*reg to match the comment here */", " ").split(',');
于 2012-07-31T09:32:54.413 回答