Method charAt(int index)
Return type: char
Member of:
java.lang.String
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return "" + Character.toTitleCase(str.charAt(0)) + str.substring(1);
2
return java.lang.Character.toUpperCase(name.charAt(0)) + name.substring(1);
3
return in.charAt(0) == '!';
4
this.fileSeperator = MapToJava.fileSeperator.charAt (0);
5
return "" + Character.toUpperCase(name.charAt(0)) + name.substring(1);
6
return path.length() > 0 && path.charAt(0) == ftpseparator;
7
return (Character.toUpperCase(s.charAt(0)) +
8
return !Character.isJavaIdentifierStart(value.charAt(0));
9
if (command.text.charAt(0) == '}')
10
return (Character.toUpperCase(s.charAt(0)) +
11
return prefix + propertyName.toUpperCase().charAt(0) + propertyName.substring(1);
12
return mConvertedCaches[str.charAt(1) % CACHES_PER_ENCODING];
13
cdelimChar = delim.charAt(0);
14
if ( fType.charAt(0) == '_' )
15
return Character.getNumericValue(getMTI().charAt (2))%2 == 0;
16
this.symbols.setDecimalSeparator( separator.charAt(0));
17
addParameter( p, Character.toLowerCase(p.charAt(0)) + p.substring(1) );
18
if((s.length() >= 4) && (s.charAt(3) == Headers.HEADER_TOKEN_CHAR))
19
for (char chr = ch.charAt(0); str.charAt(end - 1) == chr; end--) ;
20
writer.write(string.charAt(i));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.