Akron | 310905f | 2021-08-11 13:49:50 +0200 | [diff] [blame^] | 1 | read regex [ |
| 2 | ["<" ("/") "3"+]| |
| 3 | ["ಠ" "_" "ಠ"]| |
| 4 | ["(" "T" ["_"|"."] "T" ")"]| |
| 5 | ["(" "♥" ["_"|"."] "♥" ")"]| |
| 6 | ["(" "-" ["_"|"."] "-" ")"]| |
| 7 | |
| 8 | ! May be end of brackets as well, like |
| 9 | ! Author (2018): |
| 10 | [[")"|"("] ("'"|"-"|"o") [":"|"="|"x"]]| |
| 11 | ! May be end of xml, like |
| 12 | ! <b class="emp">=</b> |
| 13 | [["<"*|">"*] ["B"|"X"|"8"|":"|";"|"="|"x"] ("'"|"-"|"o") ["/"|"<"|"C"|"["|")"|"("|"D"|"P"|"d"|"p"|"3"|">"|"o"|"O"|"*"]]| |
| 14 | [["D"|">"] ("'") ":"]| |
| 15 | |
| 16 | ! May be end of square bracket |
| 17 | ! Author [2018]: |
| 18 | ["]" ":"]| |
| 19 | ["x" "("]| |
| 20 | ["^" (".") "^"]| |
| 21 | ["o" (".") "O"]| |
| 22 | [%\ ["{" "o" "}"|"o"|"m"] "/"]| |
| 23 | ["*" "_" "*"]| |
| 24 | ["." "_" "."]| |
| 25 | [":" ["a"|"b"|"c"|"d"|"e"|"f"|"g"|"h"|"i"|"j"|"k"|"l"|"m"|"n"|"o"|"p"|"q"|"r"|"s"|"t"|"u"|"v"|"w"|"x"|"y"|"z"|"_"|"-"]+ ":"]| |
| 26 | [">" "_" "<"]| |
| 27 | ["*" "<" ":" "-" ")"] |
| 28 | ]; |