> Java > java지도 시간 > Java의 일반적인 문자열 작업

Java의 일반적인 문자열 작업

angryTom
풀어 주다: 2019-07-17 09:37:25
원래의
3407명이 탐색했습니다.

Java 문자열 클래스 문자열은 Java 프로그래밍에서 널리 사용됩니다. 문자열은 Java의 객체입니다. Java는 문자열을 생성하고 작동하기 위해 문자열 클래스를 제공합니다. 오늘은 Java에서 흔히 사용되는 몇 가지 문자열 조작 방법을 소개하겠습니다.

1. length() 메서드 를 사용하여 문자열의 길이를 가져옵니다.

public class  maintest {
    public static void main(String[] args) {
        String str = "abcdefg";
        //length():统计当前字符串的字符个数
        int i = str.length();
        System.out.println(i);
        }
    }
로그인 후 복사


2. indexOf() 메서드를 사용하여 지정된 것을 찾아라 문자열 위치의 문자

public class  maintest {
    public static void main(String[] args) {
        String str = "abcdefg";
        //indexOf():查找指定字符再字符串中的位置
        int index = str.indexOf("a");
        System.out.println(index);
        }
      }
로그인 후 복사

3. toUpperCase() 메서드를 사용하여 문자열의 문자를 대문자로 변경합니다.

public class  maintest {
    public static void main(String[] args) {
        String str = "abcdefg";
        //小写转大写
        //toUpperCase():将字符串中的字符变为了大写形式
        String str = str.toUpperCase();
        System.out.println(str);
        }
       }
로그인 후 복사

4. toLowerCase() 메서드를 사용하여 변경합니다. 문자열의 문자를 대문자로 소문자의 경우

public class  maintest {
    public static void main(String[] args) {
        //toLowerCase():将字符串中的字符变为小写
        String str = "WWMMDDHH";
        String str1 = str3.toLowerCase();
        System.out.println(str);
       }
     }
로그인 후 복사

5. substring() 메서드를 사용하여 문자열을 가로채기

public class  maintest {
    public static void main(String[] args) {
        String str = "abcdefg";
        //substring:截取字符串
        String str = "abcdefg";
        String str = str5.substring(0, 3);
        System.out.println(str);
        String str = str5.substring(3);
        System.out.println(str);
      }
    }
로그인 후 복사

6. replaceAll() 메서드 사용 현재 문자열에서 지정된 내용을 바꾸려면

public class  maintest {
    public static void main(String[] args) {
        String str = "abcdefg";
        String str = str5.replaceAll("abc", "xyz");
        System.out.println(str);
       }
     }
로그인 후 복사

7. trim() 메서드를 사용하여 현재 문자열의 양쪽 끝에서 공백을 제거합니다.

public class  maintest {
    public static void main(String[] args) {
        String str = " abc def ";
        System.out.println(str.length());
        String str1 = str9.trim();
        System.out.println(str);
        System.out.println(str1);
    }
 }
로그인 후 복사

8. 문자열 + 문자열은 접합과 같습니다

public class  maintest {
    public static void main(String[] args) {
        String str1 = "123";
        String str2 = "100";
        System.out.println(str1+str2);
    }
  }
로그인 후 복사

9. 문자열을 정수로 변환합니다.

public class  maintest {
    public static void main(String[] args) {
        String str1 = "123";
        String str2 = "100";
        int num1 = Integer.parseInt(str1);
        int num2 = Integer.parseInt(str2);
        System.out.println(num1+num2);
    }
  }
로그인 후 복사

10. charAt()를 사용하여 문자열의 지정된 위치에 있는 문자를 찾습니다.

public class  maintest {
    public static void main(String[] args) {
        String str1000 = "abcde";
        //charAt:找到指定字符串中位置的字符
        char char = str1000.charAt(2);
        System.out.println(char);
    }
   }
로그인 후 복사

위 내용은 문자열 작업을 위해 요약한 것입니다. Java에 대해 더 알고 싶다면 다음을 클릭하세요. java tutorial

위 내용은 Java의 일반적인 문자열 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿