제로 베이스 소 백 학 자바 문자열 자주 사용 하 는 방법

1541 단어 자바Java문자열
Author 양 숙문자열 상용 방법
public class Test03 {
 public static void main(String[] args) {
 
  //1.        char  char.charAt(int index)
  String s1="     ";
  char c1=s1.charAt(2);
  System.out.println(c1);// 


  //2.                 boolean endsWith(string endstr);
  System.out.println("helloworld.java".endsWith("java"));//true
  System.out.println("helloworld.java".endsWith(".java"));//true
  System.out.println("helloworld.java".endsWith("helloworld.java"));//true
  System.out.println("helloworld.java".endsWith("txt"));//false


  //3.  string    string  ,       boolean equalsIgnoreCase(string anotherString)
  System.out.println("abc".equalsIgnoreCase("ABC"));//true
  System.out.println("abc".equalsIgnoreCase("abc"));//true


//4.            string   byte  ,           byte    byte[] getBytes();
  byte[] bytes ="abc".getBytes();
for (int i=0;i

그 중 일부 방법 은 언급 되 지 않 았 습 니 다.정규 표현 식 과 관련 되 기 때문에 나중에 다시 이야기 하 겠 습 니 다!

좋은 웹페이지 즐겨찾기