#regex
Read more stories on Hashnode
Articles with this tag
In previous three episodes I explored regular expression APIs of Ruby, Crystal, and Python, so let's finish this by doing the same exercise in...
In previous two episodes I explored regular expression APIs of Ruby, and Crystal, so let's do the same exercise in Python. The problem is the same -...
In the previous episode we've taken a look at Ruby Regular Expression API. I want to try a few more languages, and the most obvious one to start with...
It's easy to check if a string matches a regular expression, it's easy s =~ /rx/. To check if it matches any of multiple regular expressions, it's...
The goal of parsing is turning unstructured text input into some useful data. The most popular parsing system is regular expressions. Unfortunately...
What gets to be included in languages and what gets pushed into some third party library is a result of history more than reason. For example pretty...