regular expression
Edit
학습
도움사이트
- Java : http://www.regexplanet.com/advanced/java/index.html
- JavaScript : https://regexr.com/
- http://www.regexper.com
- http://regexpal.com/
- http://www.myezapp.com/apps/dev/regexp/show.ws
- http://blog.naver.com/ahndongju/100052756446
- RegEx Coach - 정규표현식 도우미 툴
- 초보 개발자 코드 트레이닝, Part 5: 정규 표현식
- 자바 정규 표현식 구현 : 집 전화번호, 휴대폰 번호 검사 예제
예제
- style 태그 제거:
style=\"[^\"]*\" - slug 로 시작하는 라인 :`^(Slug)(.*)\n`
- Hugo를 위해 tag 형식 바꾸기 :
^(tags\: )(.*?)\n→tags:[$2]\n---\n\n