Last active
August 29, 2015 14:26
-
-
Save Locke23rus/482528c5d2e570bcb2fb to your computer and use it in GitHub Desktop.
Regex with Unicode categories
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 characters
| $ crystal regex.cr | |
| Syntax error in ./regex.cr:1: invalid regex: support for \P, \p, and \X has not been compiled at 4 | |
| puts " \# ".gsub /\\(\p{P})/, '\1' |
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 characters
| puts " \# ".gsub /\\(\p{P})/, '\1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment