i want to delimite "/*" in my string:
for example
String str="6666 /* 555 / 777 * ttt";
// And result should be
result= 6666 , 555 / 777 * ttt
i wrote the program with
String[] line_split=line_str.split("/*");
and i get this error:
Exception in thread "main" java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0 *
anyone has a solution for me?