This is the error message I get.
cannot resolve symbol
symbol : method subString (int)
location: class java.lang.StringBuffer
String nom=sb.subString(4)
PLEASEEEEE, CAN ANYONE GIVE ME A HAND OR SEND ME AN APPLICATION WHERE THIS WORKS!!!
THANKS
Remember, Errors are your friends...
The error states, "Hey dude, I can't resolve this symbol... You said it's a method called subString, but looking at java.lang.String buffer, I can not find a method with that signature... what gives? by the way here is your code... String nom=sb.subString(4) check spelling or something"
so let take a look at the java.lang.StringBuffer API...
and what do you know, there is no subString(int) method, in this case its because looking at the API, the method name substring is all in lowercase... Which is funny, because one would think that having the first letter of the second
word in the method name capitalized would follow the accepted coding conventions... but go figure...
Hope this helps...