250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- spring MVC(모델2)방식
- RESFUL
- 지마켓
- lda
- 이력서
- 자바
- (깃)git bash
- java
- db
- r
- oracle
- Gmarket
- 방식으로 텍스트
- pytorch
- 과학백과사전
- Python
- 파이썬
- test
- word2vec
- 토픽추출
- Topics
- 크롤링
- 게시판 만들기
- Websocket
- mysql
- 幼稚园杀手(유치원킬러)
- 네이버뉴스
- tomoto
- 코사인 유사도
- jsp 파일 설정
Archives
- Today
- Total
무회blog
Java: , 정규식 표현관련 본문
public class RequalarExam {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("문자열 입력: ");
String str = sc.nextLine();
// abc문자 포함
// if(str.matches(".*abc.*")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 자바에서는 \w 를 \\w 로 사용해야 함
// 숫자만 3자리 입력
// if(str.matches("[\\d]{3}")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 알파벳, 숫자만 5자리 이상
// if(str.matches("[\\w\\d]{5,}")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 한글만 3~5 자리
/* if(str.matches("[가-힣]{3,5}")){
System.out.println("매칭");
}else{
System.out.println("비매칭");
}*/
// 아래내용에 부합되는 사항을 구현
// dolsam77@nate.com => 매칭
// 34dolsam77@nate.com => 비매칭
// dolsam77nate.com => 비매칭
// dolsam77@nate.comcom => 비매칭
if(str.matches("^[a-z]{0,16}" + "[0-9]{0,8}"+ "@[a-z]{0,8}"+ "\\.com")){
System.out.println("매칭");
}else{
System.out.println("비매칭");
}
}
}
public class RequalarExam {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("문자열 입력: ");
String str = sc.nextLine();
// abc문자 포함
// if(str.matches(".*abc.*")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 자바에서는 \w 를 \\w 로 사용해야 함
// 숫자만 3자리 입력
// if(str.matches("[\\d]{3}")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 알파벳, 숫자만 5자리 이상
// if(str.matches("[\\w\\d]{5,}")){
// System.out.println("매칭");
// }else{
// System.out.println("비매칭");
// }
// 한글만 3~5 자리
/* if(str.matches("[가-힣]{3,5}")){
System.out.println("매칭");
}else{
System.out.println("비매칭");
}*/
// 아래내용에 부합되는 사항을 구현
// dolsam77@nate.com => 매칭
// 34dolsam77@nate.com => 비매칭
// dolsam77nate.com => 비매칭
// dolsam77@nate.comcom => 비매칭
if(str.matches("^[a-z]{0,16}" + "[0-9]{0,8}"+ "@[a-z]{0,8}"+ "\\.com")){
System.out.println("매칭");
}else{
System.out.println("비매칭");
}
}
}
'Java' 카테고리의 다른 글
Java: ,자바,임의값 정수 2개중 , 3의 배수, 에 해당하는 개수 구하기 (0) | 2021.02.16 |
---|---|
Java: , 형변환 (0) | 2021.02.16 |
Java: , static 변수,/메소드,/static 블록 (0) | 2021.02.08 |
Java: class 안에서 메서드 접근 -> public -> static 있을때와 없을때 (0) | 2020.11.08 |
Java: 제네릭(Generic) 사용 예제 (0) | 2020.11.08 |
Comments