使用 Java,我想提取 $ 符号之间的单词$
。
例如:
String = " this is first attribute $color$. this is the second attribute $size$"
我想拉出字符串:color
并将size
它们放入列表中。
我试过了:
Pattern pattern = Pattern.compile("(\\$) .* (\\$)");
Matcher matcher = pattern.matcher(sentence);
但我得到了输出:
"$color$.this is the second attribute $size$"
做这个的最好方式是什么?