st00pid java question - I'm about to gouge out my eyes!

CaptnMorgan

Junior Member
Apr 8, 2002
2
0
0
Using java ...

Is there a way to get an ascii value of a character from some built in function?

Someone's. anyone's assistance is greatly appreciated!
 

Viper GTS

Lifer
Oct 13, 1999
38,107
433
136
Does this help?

Do a search for ascii, this is what they list:

charAt accessing n-th character
(char) c ascii to character
getNumericValue character to ascii
(int) c character to ascii
toString convert something to a string
"" + e convert something to a string
substring extract a substring
print simple print (on strings)
println (23) simple print (on strings)
+ string concatenation
equals string equality & inequality
length string size
"..." strings (verbatim)
toUpperCase/toLowerCase upper/lower case character
toUpperCase/toLowerCase uppercase/lowercase string

Viper GTS