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 |
Tags
- Android Apk 이름 변경
- tomcat
- jQuery
- 안드로이드
- fragment
- Exception
- java error
- Kotlin
- release unsigned
- DataTable
- Android
- Program type already present
- FLUTTER
- Android Apk
- Eclipse
- Java
- android error
- apache gzip
- error
- css
- spring
- JavaScript
- MySQL
- release Apk
- R프로그래밍
- Firebase
- Android Apk 이름
- CSS사용법
- html
- android fragment
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