목록프로그래밍 (60)
GGYU
정규식
정규식 테스트 사이트https://regexr.com/ 정규식 사용법 find(), group() (패턴에 맞는 값 모두 찾아내기) public void findAllRegEx(){ String target = "ㅇㄴㄹㄴㅇㄹㄴㅇㄹㅇㄴ"; String regEx = "[0-9]"; Pattern pat = Pattern.compile(regEx); Matcher match = pat.matcher(target); int matchCount = 0; while (match.find()) { System.out.println(matchCount + " : " + match.group()); matchCount++; } System.out.println("총 개수 : " + matchCount); } http:..
프로그래밍
2018. 2. 11. 14:00
java 파일입출력
https://wikidocs.net/227
프로그래밍
2018. 2. 11. 13:57
java 소켓통신
소켓통신http://hunit.tistory.com/256https://gist.github.com/junsuk5/f0ff2298e17853dc48e89f2dfc7bd985
프로그래밍
2018. 2. 11. 13:55
쿼터스 실습
프로그래밍/쿼터스 실습
2010. 12. 19. 00:04
수치해석 이분법,할선법,뉴턴법
프로그래밍/C&C++
2010. 12. 18. 23:46
수치해석 LU소거법
프로그래밍/C&C++
2010. 12. 18. 23:45
수치해석 Midpoint Trapezoidal, Simpson 적분공식
프로그래밍/C&C++
2010. 12. 18. 23:44
zi80과 아트메가 128 연동
zi80과 아트메가 128 연동
프로그래밍/어셈
2010. 12. 18. 23:28
z80 어셈 BCD2BIN
프로그래밍/어셈
2010. 12. 18. 23:27