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
- 이력서
- (깃)git bash
- lda
- jsp 파일 설정
- 게시판 만들기
- 자바
- r
- mysql
- 幼稚园杀手(유치원킬러)
- 파이썬
- 토픽추출
- Topics
- tomoto
- test
- 과학백과사전
- 크롤링
- oracle
- 방식으로 텍스트
- Python
- pytorch
- word2vec
- 코사인 유사도
- spring MVC(모델2)방식
- RESFUL
- db
- Websocket
- java
- 네이버뉴스
- 지마켓
- Gmarket
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