Java string.replaceFirst problems
I'm trying to replace a part of a string. The part contains some special characters:
#L(inche开发者_运维问答s)=24#
I know replaceFirst is regex driven but I can't seem to create a regular expression that matches this part in a string, any ideas?
#.*?#
This should match the entire String above.
精彩评论