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

[regex] PHP 정규표현식 패턴 24강 - \A (역슬래시 대문자A) : 문자열의 가장 처음 , \Z (역슬래시 제트) : 문자열의 가장 마지막

1,317  


 


 패턴 24  -  \A  :  가장 처음 줄의 시작
                   ^  :  각각의 줄의 시작

                  \Z  :  가장 마지막 줄의 끝
                    $  :  각각의 줄의 끝


※ 주의;  A와 Z는 대문자 사용해야 함.

Source

Ere iron was found or tree was hewn,    When young was mountain under moon;
Ere ring was made, or wrought was woe,    It walked the forests long ago.

Case 1  -  가장 첫 줄의 시작  3개의 문자

Regular Expression: \A...
First match: Ere iron was found or tree was hewn, When young was mountain under moon;
Ere ring was made, or wrought was woe, It walked the forests long ago.
All matches: Ere iron was found or tree was hewn, When young was mountain under moon;
Ere ring was made, or wrought was woe, It walked the forests long ago.

Case 2  -  가장 마지막 줄 끝 3개의 어떤 문자

Regular Expression: ...\Z
First match: Ere iron was found or tree was hewn, When young was mountain under moon;
Ere ring was made, or wrought was woe, It walked the forests long ago.
All matches: Ere iron was found or tree was hewn, When young was mountain under moon;
Ere ring was made, or wrought was woe, It walked the forests long ago.

 


분류 제목
PHP-생코 PHP 20강 - 입력과 출력 - $_GET 방식 ★
PHP-생코 PHP 19강 - 비교
PHP-생코 PHP 18강 - 변수 고급 (변수 타입 변경 / 가변 변수) ★
PHP-생코 PHP 17강 - 상수
PHP-생코 PHP 16강 - 변수
PHP-생코 PHP 15강 - 문자
PHP-생코 PHP 14강 - 숫자
PHP-생코 PHP 13강 - 서버측 언어를사용하는 이유
PHP-생코 PHP 12강 - 첫 번째 PHP 에플리케이션 (Hello world 출력)
PHP-생코 PHP 11강 - PHP설정 윈도우 bitnami
PHP-생코 PHP 10강 - PHP설정 리눅스 ★★★
PHP-생코 PHP 9강 - PHP설정 (= php.ini 파일의 eroor 상태 on/off 장단점) ★
PHP-생코 PHP 8강 - PHP설치 리눅스 (= LAPM 필수 설치 명령어) ★
PHP-생코 PHP 7강 - 웹호스팅 사용법2 (카페24 FTP/SSH/PhpMyAdmin 접속)
PHP-생코 PHP 6강 - 웹호스팅 사용법 (카페24 계정 신청 방법)
PHP-서기 PHP 5강 - PHP설치 맥
PHP-서기 PHP 4강 - PHP설치 윈도우 (= Bitnami 설치 및 사용법)
PHP-서기 PHP 3강 - PHP 설치
PHP-서기 PHP 2강 - PHP란무엇인가 PHP의특성2
PHP-서기 PHP 1강 - PHP란무엇인가 서버와클라이언트
21/35
목록
찾아주셔서 감사합니다. Since 2012