Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想匹配},{并将其用作 Eclipse 和 Java 中的拆分,但逗号出现错误。
},{
String[] myArray = myVariable.split("},{");给出:
String[] myArray = myVariable.split("},{");
当尝试像这样拆分字符串时: blabla},{foobar33vdhevbci进入blabla和foobar33vdhevbci
blabla},{foobar33vdhevbci
blabla
foobar33vdhevbci
我怎样才能做到这一点?
{正则表达式对和有特殊意义}。(它们表示重复,例如a{5}表示 5 a。)
{
}
a{5}
你需要逃离他们。
\},\{
如果这是在代码中,作为字符串,请确保转义斜杠
"\\},\\{"