我需要替换所有[quote]
to"
和[/quote]
to"
以下字符串:
[quote]fgfhfgh [quote] vbbb[/quote]ghhhhjj[/quote]
结果应该是这样的:
"fghfdgfdh "gghj vbbb"ghhhhjj"
我使用了这个但无法做到:
finalRecieveString = (String) uivdHashTable.get("pendingString");
String ReplaceQuote=finalRecieveString.replaceAll("[quote]", "\"");
ReplaceFinalQuoteString=ReplaceQuote.replaceAll("[/quote]", "\"");