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
- r
- Topics
- 게시판 만들기
- Websocket
- test
- lda
- java
- pytorch
- db
- 자바
- Python
- Gmarket
- 코사인 유사도
- 크롤링
- 네이버뉴스
- 과학백과사전
- 幼稚园杀手(유치원킬러)
- 토픽추출
- 이력서
- 지마켓
- spring MVC(모델2)방식
- mysql
- 방식으로 텍스트
- oracle
- RESFUL
- 파이썬
- word2vec
- (깃)git bash
- tomoto
- jsp 파일 설정
Archives
- Today
- Total
목록정규식 표현관련 (1)
무회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{ // Sy..
Java
2021. 2. 8. 00:56