可以使用正則表達式來去掉字符串中的特殊字符。下面是一個示例代碼:
import java.util.regex.Pattern;
public class RemoveSpecialCharacters {
public static void main(String[] args) {
String str = "Hello, World!@#$%^&*()_+=-";
// 使用正則表達式去掉特殊字符
String result = str.replaceAll("[^a-zA-Z0-9]", "");
System.out.println(result);
}
}
輸出結果為:HelloWorld