Sun Jul 08, 2012 4:46 pm
Sun Jul 08, 2012 11:12 pm
public class Main {
public static void main(String[] args) {
String str="gasd@!dfas%";
String newStr="";
for (int i=0;i<str.length();i++)
{
//Ascci range for a-z A-Z
if (str.charAt(i)>64&&str.charAt(i)<121)
{
newStr+=str.charAt(i);
}
}
System.out.println("String before filter "+str);
System.out.println("String after filter "+newStr);
}
}
Mon Jul 09, 2012 9:56 am
Mon Sep 17, 2012 9:58 am
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.