Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- fragment
- CSS사용법
- Firebase
- tomcat
- MySQL
- FLUTTER
- 안드로이드
- Android Apk
- android fragment
- error
- spring
- DataTable
- Android Apk 이름 변경
- html
- java error
- Android Apk 이름
- Program type already present
- Kotlin
- Exception
- apache gzip
- css
- jQuery
- Eclipse
- release unsigned
- release Apk
- android error
- Java
- Android
- JavaScript
- R프로그래밍
Archives
- Today
- Total
목록Java 정규식 (1)
selfstarter
Java 정규식
자바 정규식 해당하는 문자열이 존재하는지 확인 유용한 테스트 사이트 : https://regex101.com/ // .은 모든 문자를 의미하고 *은 0개 이상을 의미한다 String match = ".*202005.*"; String txt1 = "202004.xlsx"; String txt2 = "202005.xlsx"; String txt3 = "4323202005123123.xlsx"; System.out.println("txt1 일치여부:"+txt1.matches(match)); System.out.println("txt2 일치여부:"+txt2.matches(match)); System.out.println("txt3 일치여부:"+txt3.matches(match));
Server/Java
2020. 5. 12. 10:06