• 회원가입
  • 로그인
  • 구글아이디로 로그인

[web] PHP 정규표현식(=정규식) (chatGPT AI 답변)

1,654  

PHP 정규표현식 (chatGPT AI 답변)

[한국어]

 

PHP 정규식(regex)은 검색 패턴을 정의하는 일련의 문자입니다. 패턴은 문자열을 일치(때로는 교체)하거나 문자열에 지정된 패턴이 포함되어 있는지 확인하는 데 사용됩니다.


PHP에서는 preg_* 함수를 사용하여 정규식으로 작업할 수 있습니다. 일반적으로 사용되는 일부 기능은 다음과 같습니다.

  • preg_match: 패턴과 문자열이 일치하는지 검색합니다.
  • preg_match_all: 패턴과 문자열 사이의 모든 일치 항목을 검색합니다.
  • preg_replace: 문자열에서 패턴의 모든 항목을 교체로 바꿉니다.
  • preg_split: 지정된 패턴으로 문자열을 분할합니다.

 

Regex 패턴은 일반적으로 슬래시(/)와 같은 두 개의 구분 기호 사이에 작성/됩니다. 예를 들어 패턴 /^[a-z]+$/은 소문자만 포함하고 문자로 시작하고 끝나는 모든 문자열과 일치합니다.

 

Regex 패턴에는 특별한 의미가 있는 다양한 특수문자와 메타문자 포함됨.

  • . (마침표): 줄바꿈 제외한 모든 단일문자와 일치
  • * (아스테리크): 0개 이상의 선행 문자 발생과 일치
  • ^ (꺽쇠): 줄의 시작과 일치

 

정규식은 강력한 도구이지만 복잡하고 읽고 유지 관리하기 어려울 수 있음을 기억하는 것이 중요합니다. 이들을 최대한 활용하려면 구문과 사용법을 확실하게 이해하는 것이 좋습니다.

 


[영어]

 

PHP Regular Expression (regex) is a sequence of characters that define a search pattern. The pattern is used to match (and sometimes replace) strings, or to check if a string contains the specified pattern.


In PHP, you can use the preg_* functions to work with regular expressions. Some of the commonly used functions include:

  • preg_match: searches for a match between a pattern and a string
  • preg_match_all: searches for all matches between a pattern and a string
  • preg_replace: replaces all occurrences of a pattern in a string with a replacement
  • preg_split: splits a string by a specified pattern

 

Regex patterns are written between two delimiters, usually slashes (/). For example, the pattern /^[a-z]+$/ matches any string that contains only lowercase letters, and starts and ends with a letter.


Regex patterns can include various special characters and meta-characters that have special meanings, such as

  • . (matches any single character except a newline),
  • * (matches zero or more occurrences of the preceding character), 
  • ^ (matches the start of a line).

 

It's important to remember that regular expressions are a powerful tool, but they can also be complex and difficult to read and maintain. To get the most out of them, it's helpful to have a solid understanding of their syntax and usage.

 



분류 제목
web (개발자/퍼블리셔) 코딩/프로그래밍 시, 명심사항 (= 좋은 코딩/프로그래밍 기준)
web 최초 웹사이트 구경하기 (= 인터넷 1호 홈페이지 주소)
web 코딩 (제작의뢰/수주) 시, 반드시 (APM/빌더)버전 공유하기
web 원숫자 / 원영문 (= 원문자 = 동그마리 안에 숫자 있는 특수문자)
web 도메인 네임서버 확인 방법 (cmd 모드 경우)
web 구글봇 아이피 국적
web MDN (developer.mozilla.org : 모질라) 사이트 디자인 커스텀
web 그누보드 업데이트 시, 기존 깃허브 퍼머링크 유지
web 그누보드/영카트 (파일/폴더) 자료 저장/보관/관리 노하우
web GeoIP (지오아이피) / ip2nation (아이피투네이션) 비교/차이
web 네이버 웹마스터 등록 (= 네이버 검색기 SEO 최적화) + sitemap (사이트맵) 제출 시 주의사항
web 사이트 CMS(Content Management System: 콘텐츠 관리 시스템 = 제작빌더) 확인 방법
web Apache log4j 취약점 대응 가이드
web 노트북에서 깃허브 코드 깔끔하게 보기 (= 깃허브 코드 글자크기/스타일 지정) ※ 화면 확대/축소 단축키
web PHP - Windows용 PHP 버전 (Thread Safe / None Thread Safe) 의미 차이…
web 갤러리 스킨은 가로 개수 3개 이하 권장
web 스크래핑(scraping), 크롤링(crawling), 파싱(parsing) 개념 정의 차이
web 줄바꿈 기호 (CR, LF, CRLF) 의미 (= 개행문자 = 새줄문자)
web 웹페이지 로드 속도 올리기. (= Page Speed 개선 방법)
web CSS 핵심 3대장/삼대장 (찾기 → 수정 → 반영) = 찾아서 수정 후 변경사항 적용하기
4/19
목록
찾아주셔서 감사합니다. Since 2012