RegEx are a wonderful tool, we should to use them carefully and not to look smart.
TL;DR: Avoid regular expressions as much as possible.
-
Readability
-
Maintainability
-
Testability
-
Intention Revealing
-
Use regular expression just for string validation.
-
If you need to manipulate objects, don't make them strings.
val regex = Regex("^\\+(?:[0-9a-zA-Z][– -]?){6,14}[0-9a-zA-Z]$")
val prefix = "\\+"
val digit = "[0-9]"
val space = "[– -]"
val phoneRegex = Regex("^$prefix(?:$digit$space?){6,14}$digit$")
Regular expressions are a valid tool. There's not much automated way of checking for possible abusers. A whitelist might be of help.
-
Primitive Obsession
-
Abusers
Regular expressions are a great tool for string validation. We must use them in a declarative way and just for strings.
Names are very important to understand pattern meanings.
If we need to manipulate objects or hierarchies, we should do it in an object way.
Unless we have a conclusive benchmark of impressive performance improvement.
Code Smell 06 - Too Clever Programmer
Code Smell 20 - Premature Optimization
Code Smell 121 - String Validations
Code Smell 185 - Evil Regular Expressions
What exactly is a name - Part I The Quest
Photo by John Jennings on Unsplash
A Perl program is correct if it gets the job done before your boss fires you.
Larry Wall
Software Engineering Great Quotes
This article is part of the CodeSmell Series.