카테고리

분류 전체보기 (68)
JAVA-기본 (7)
JAVA-AWT (24)
JAVA-클래스의 중요메소드 (23)
JAVA-람다식 (0)
Android Studio (7)
Python (1)
OpenCV (1)
AWS (0)
webrtc (0)
javascript (4)
처리방침 (1)
rss 아이콘 이미지
반응형

아래는 String 클래스의 메소드들입니다. 그 중에서 가장 많이 사용하는 메소들을 정리하였으며 주요 메소들을 설명 드리도록 하겠습니다. 

String 클래스는 문자열 데이터값을 저장하는 객체로 사용됩니다. 또한, 문자열은 변경될 수 없습니다.


boolean equals
(Object anObject)
Compares this string to the specified object.
     
int length() Returns the length of this string.
     
int indexOf
(int ch)
Returns the index within this string of the first occurrence of the specified character.
     
char charAt(int index) Returns the char value at the specified index.
     
string replace
(char oldChar, char newChar)
Replaces each substring of this string that matches the literal
target sequence with the specified literal replacement sequence.
     
string substring
(int beginIndex)
Returns a string that is a substring of this string.
     
string substring
(int beginIndex, int endIndex)
Returns a string that is a substring of this string.
     
string toString() This object (which is already a string!) is itself returned.
     
string toLowerCase() Converts all of the characters in this String to lower case using the rules of the default locale.
     
string toUpperCase() Converts all of the characters in this String to upper case using the rules of the default locale.
     
string trim() Returns a string whose value is this string, with any leading and trailing whitespace removed.
     
string concat(String str) Concatenates the specified string to the end of this string.
     
sring[] split(String regex) Splits this string around matches of the given regular expression.


다음 강의에서 위의 String클래스의 메소드들을 확인해보도록 하겠습니다.

아주 유용한 메소들로 많이 사용되니 상세히 파악해보도록 하겠습니다.

다음 강의를 참고해주세요.


자료가 마음에 드셨다면 자주 찾아주세요^^ 글 올리는데 힘이됩니다.


반응형

'JAVA-클래스의 중요메소드 > String클래스' 카테고리의 다른 글

JAVA-중요06-replace()  (0) 2018.06.29
JAVA-중요05-lastIndexOf()  (0) 2018.06.28
JAVA-중요04-indexOf()  (0) 2018.06.28
JAVA-중요03-charAt()  (0) 2018.06.28
JAVA-중요02-length()/length  (0) 2018.06.21