--- RegularExpressions
+++ RegularExpressions
@@ -1,18 +1,21 @@
= RegularExpressions
== 참고 ==
* https://opentutorials.org/course/909/5143
* http://zvon.org/comp/r/tut-Regexp.html
* https://www.regexpal.com/
+== history ==
+ [RegularExpressionsUsed]
+
== 문법 ==
* 특정 케이스로 시작 : `^`
* Source [[[#!Text
who is who
]]]
* `^who` : who로 시작
* `^w` : w로 시작
* `^[a-zA-Z]` : 영문으로 시작
* `^[0-9]` : 숫자로 시작
@@ -247,18 +250,10 @@
When young was mountain under moon;
Ere ring was made, or wrought was woe,
It walked the forests long ago.
cat
concat
]]]
* `\A...` : 전체 문장의 시작 세글자
* `^...` : 각 문장별 시작 세글자
* `...\Z` : 전체 문장의 끝 세글자
* `...$` : 각 문장별 끝 세글자
-
-
-
-
-== Used ==
- * "숫자" 에서 더블쿼터 없애기
- * search : `"(\d+)"`
- * replace : $1