I have a string for e.g.
String src = \"How are things today /* this is comment *\\*/ and is your code /*\\* this is another comment */ working?\" >
String src = \"How are things today /* this is comment *\\*/ and is your code /*\\* this is another comment */ working?\"
Try this which worked for me:
System.out.println(src.replaceAll("(\/\*.*?\*\/)+",""));