Normal
Versuche das hier:[code=Java] public static void main(String args[]){ String s ="<!--function bla--bla(){} //-->"; Pattern pattern = Pattern.compile("<!--(.(//){0})*//-->"); Matcher matcher = pattern.matcher(s); while (matcher.find()){ System.out.println(matcher.group()); } }[/code]
Versuche das hier:
[code=Java]
public static void main(String args[]){
String s ="<!--function bla--bla(){} //-->";
Pattern pattern = Pattern.compile("<!--(.(//){0})*//-->");
Matcher matcher = pattern.matcher(s);
while (matcher.find()){
System.out.println(matcher.group());
}
[/code]