行に含まれているかどうかを確認したい/*
。ブロックコメントが最初にあるかどうかを確認する方法を知っています:
/* 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