我正在使用Java 8,并且具有类似
的字符串Hello [[${user}]], this is your username [[${username}]] Password [[${password}]]
现在,我想获取数组或类似字符串的列表
arr[0] = user
arr[1] = username
arr[2] = password
而且我无法编写Java正则表达式。
答案 0 :(得分:0)
我将使用以下标准声明字符串中的变量:
[[${<var=><value>}]]
这是一个简单的解决方案,仅使用基本数组来匹配上述标准,并使用java.util.regex.Pattern
和java.util.regex.Matcher
提取值:
String input = "Hello [[${user=cindy}]],is your username [[${username=cindy23}]] Password [[${password=mysecretpwd}]] ";
String regex = "\\[\\[\\$\\{user=(.*)\\}\\]\\].*\\[\\[\\$\\{username=(.*)\\}\\]\\].*\\[\\[\\$\\{password=(.*)\\}\\]\\]";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(input);
String[] data = new String[3];
if (matcher.groupCount() == 3 && matcher.find()) {
for (int i = 1; i <= 3; i++) {
data[i - 1] = matcher.group(i);
}
}
for (String s : data) {
System.out.println(s);
}
编辑:
要在[[${ wantedData }]]
这样的括号内获取内容,请使用以下方法:
\[\[\$\{([^\}]*)\}\]\][^\[]*\[\[\$\{([^\}]*)\}\]\][^\[]*\[\[\$\{([^\}]*)\}\]\]