| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- baekjun
- markdown
- 파이썬머신러닝완벽가이드
- 2750
- 피보나치 수
- collections.deque
- adjacentElementsProduct
- All Longest Strings
- matrixElementsSum
- Counting cells in a blob
- Numpy
- Sequential Search
- C++
- almostIncreasingSequence
- data_structure
- Python
- 백준
- recursion
- flask
- codesignal
- 수 정렬하기
- cpp
- centuryFromYear
- 2015 봄학기 알고리즘
- 파이썬 포렌식
- Daily Commit
- til
- 10953
- codesingal
- shapeArea
Archives
- Today
- Total
Introfor
[php]문자열 필터링 ereg, eregi 함수
ereg("찾고자 하는 문자", "임의의 값") // 대·소문자 구분 O eregi("찾고자 하는 문자", "임의의 값") // 대·소문자 구분 X 예시1234567891011121314151617181920 Colored by Color Scriptercs특수문자 정규 표현식 예시[abc] a,b,c 로 이루어진 문자열[a-c] a~c 까지 문자로 이루어진 문자열[a-z] a~z 까지 문자로 이루어진 문자열[A-Z] A~Z 까지 문자로 이루어진 문자열[a-zA-Z] a~z 까지, A~Z 까지의 문자로 이루어진 문자열[0-9] 0~9 까지의 숫자로 이루어진 문자열[!@#_0-9] !,@,#,_ 와 0~9 까지의 문자로만 이루어진 문자열
Doing/Web
2016. 4. 26. 21:34