我想在我的字符串中分隔“/ *”:
例如
String str="6666 /* 555 / 777 * ttt";
// And result should be
result= 6666 , 555 / 777 * ttt
我用
String[] line_split=line_str.split("/*");
我得到这个错误:
Exception in thread "main" java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0 *
有人对我有解决方案吗?