ソースコードで「*」(乗算演算子) を検索するには?
アスタリスク文字ではありません (コメントなど)。ちょうど演算子 *!
/** foo method */ // <- this should not be in search results
public int foo(int i, int j)
{
/* compute the values */ // <- this should not be in search results
return i * j; // <- this should be in search results
}