More actions
imported>linflus No edit summary |
imported>linflus No edit summary |
||
| Line 1: | Line 1: | ||
* 사용 언어 : C++ | |||
String str = new String("abcdef"); | String str = new String("abcdef"); | ||
{| class="wikitable" | |||
charAt | |- | ||
str.charAt(3) == 'd' | | 함수 | ||
compareTo | | 예 | ||
|- | |||
compareToIgnoreCase | | charAt | ||
| str.charAt(3) == 'd' | |||
|- | |||
| compareTo | |||
| | |||
|- | |||
| compareToIgnoreCase | |||
| | |||
|- | |||
| | |||
| | |||
|} | |||
concat | concat | ||
Revision as of 05:11, 29 June 2011
- 사용 언어 : C++
String str = new String("abcdef");
| 함수 | 예 |
| charAt | str.charAt(3) == 'd' |
| compareTo | |
| compareToIgnoreCase | |
concat str.concat(str) == "abcdefabcdef" contains str.contains("bcd") == TRUE endsWith str.endsWith("ef") == TRUE startsWith str.startsWith("abc") == TRUE equals str.equals(new String("abcdef")) == TRUE equalsIgnoreCase str.equalsIgnoreCase(new String("ABcdEf")) == TRUE indexOf str. isEmpty lastIndexOf length replace split subString
format trim toLower toUpper
valueOf