View Single Post
Old 03-06-2004, 05:58 PM   #4 (permalink)
firebirdta
Crazy
 
For one thing, you should use the equals( Object anObject ) or the equalsIgnoreCase( String aString ) methods in the String class if you're comparing Strings because == only works for primitives. I'm not sure what you're trying to do with the substring method, it seems to me that using the toCharArray() method in the String class and a loop would be helpful, though.
__________________
"Even if you prove me wrong, I'm not going to believe you." - A. McGill

Last edited by firebirdta; 03-06-2004 at 06:55 PM..
firebirdta is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47