Last active
April 11, 2018 00:37
-
-
Save eyeplum/8362eec3f372ff75d3e4761add898809 to your computer and use it in GitHub Desktop.
Revisions
-
eyeplum revised this gist
Apr 11, 2018 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ # See: https://regex101.com/r/pIx6E8/10 (?xm)^ # every line U\+([[:xdigit:]]{4,6}) # [1]codepoint \t # separator (k[a-zA-Z0-9_]+) # [2]field key \t # separator -
eyeplum revised this gist
Apr 10, 2018 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # See: https://regex101.com/r/pIx6E8/9 (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint \t # separator (k[a-zA-Z0-9_]+) # [2]field key \t # separator (.*) # [3]field value -
eyeplum revised this gist
Apr 10, 2018 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,7 @@ # See: https://regex101.com/r/pIx6E8/8 (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint [[:blank:]]* # separator (k[a-zA-Z0-9_]+) # [2]field key [[:blank:]]* # separator (.*) # [3]field value -
eyeplum revised this gist
Apr 10, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # https://regex101.com/r/pIx6E8/8 (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint -
eyeplum revised this gist
Apr 10, 2018 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ # See: https://regex101.com/r/pIx6E8/7 (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint [[:blank:]]* # separator (k[a-zA-Z0-9_]+) # [2]field key [[:blank:]]* # separator (.*) -
eyeplum renamed this gist
Apr 10, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
eyeplum renamed this gist
Apr 10, 2018 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ # See: https://regex101.com/r/pIx6E8/6 (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint [[:blank:]]* # separator -
eyeplum created this gist
Apr 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ (?xm)^ # every line (U\+[[:xdigit:]]{4,6}) # [1]codepoint [[:blank:]]* # separator ([[:alpha:]]+) # [2]field key [[:blank:]]* # separator (.*) # [3]field value