Regex¶
Rất nhiều regex hay dã man, và cũng nhanh khủng khiếp, nếu biết Pattern =))
Match từ đây đến hết câu¶
[Phần bắt đầu của đoạn bạn cần match]\s*([^\n\r]*)
Xóa toàn bộ các dòng bị trùng lặp¶
^(.*)(\r?\n\1)+$
Match markdown links¶
\[(.+)\]\(([^ ]+?)( "(.+)")?\)
- Group 1 is the text of the link.
- Group 2 is the URL of the link.
- Group 3 is the optional title of the link including the double quotes (this group is necessary for the ? marker).
- Group 4 is the optional title of the link.
Date Time like¶
like:
- 9:59 AM
- 5:59 PM
([0-9]|[0-1][0-2])\:?([0-5][0-9])? ([A|P]M)
match empty line¶
^\s*$