我想检查我的行是否包含/*
。我知道如何检查块注释是否在开头:
/* comment starts from the beginning and ends at the end */
if(line.startsWith("/*") && line.endsWith("*/")){
System.out.println("comment : "+line);
}
我想知道的是如何计算评论,如下所示:
something here /* comment*/
或者
something here /*comment */ something here