자바 에서 간단 한 분할 문자열 인 스 턴 스 캡 처

현재 세 가지 형식 을 정리 해 냈 다.
실제 수요 에 따라 선택 하여 사용 할 수 있다

String userNameUrl;
int beginIndex = 0;
int endIndex = 0;
userNameUrl = "454512@hongri@4944115455d9591b274648a06303d910de";

/**
*    :
*/
beginIndex = userNameUrl.indexOf("@")+1;
endIndex = userNameUrl.lastIndexOf("@");
System.out.println(userNameUrl.substring(beginIndex,endIndex));
/**
*    :
*/
System.out.println(userNameUrl.split("@")[1].toString());
/**
*    :
*/
System.out.println(userNameUrl.substring(7, 13));

실행 결과:

이상 의 자바 에서 간단 한 분할 문자열 인 스 턴 스 를 캡 처 하 는 것 은 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기