January 2017

Notes on Regex

I’m going to use python. Regex can be used by using the re library. You should not refer to this post as these are just notes, it would be better to follow the actual documentation of the library. To use regex, which uses backslashes \ we must use raw python strings like r”\n”. . matches anything but a newline \d matches 0-9 while \D matches anything but digits. …

Notes on Regex Read More »

Scroll to Top