일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- matrixElementsSum
- cpp
- almostIncreasingSequence
- C++
- markdown
- adjacentElementsProduct
- 2750
- shapeArea
- 파이썬 포렌식
- Sequential Search
- All Longest Strings
- 10953
- 파이썬머신러닝완벽가이드
- Numpy
- 백준
- baekjun
- flask
- codesignal
- centuryFromYear
- Daily Commit
- recursion
- Counting cells in a blob
- til
- 수 정렬하기
- 2015 봄학기 알고리즘
- 피보나치 수
- Python
- data_structure
- collections.deque
- codesingal
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