JAVA中需要正则表达式

时间:2015-03-24 10:22:29

标签: java arrays regex string

以下字符串:" strAlpha" &安培; " strNum"是我的示例字符串格式:

String strAlpha = "[fields=A,B,C,D]";
String strNum = "[sales=15,20,16,100,500,54555]";

strAlpha.matches("regex");
strNum.matches("regex");

必需的正则表达式,因此结果数组将只包含上述字符串的逗号分隔值。

1 个答案:

答案 0 :(得分:0)

\[[^=]*=|\]

使用replace来清理字符串。按empty string放置。请参阅演示。

https://regex101.com/r/tJ2mW5/17