Java中,如果將字符串中的*號替換,要注意,不能直接替換*,要用\\*

Java中,如果將字符串中的*號替換,要注意,不能直接替換*,要用\\* String test=」*123*「 test= test.replaceAll("*", "A");//報錯Dangling meta character '*' near index 0 正確的是: test= test.replaceAll("\\*", "A");
相關文章
相關標籤/搜索