</pre>巧用String类的int indexOf(char ch)方法,可以巧妙的实现该功能:<pre name="code" class="java">String a="F_001";
if(a.indexOf('_')!=-1)
{
System.out.println("该字符串包含_符号");
}
else System.out.println("该字符串不包含_符号");
如果字符串中存在某一符号,String.indexOf(ch)则会返回该符号所在索引位置,否则返回值-1;