Should I create one complex RegEx to tackle all cases on hand or should I break one complex RegEx in multiple Regex which ?
I’m concerned regarding performance using complex Regex.
Will breaking the complex Regex into smaller simple regex perform better?
I don’t think there would be much of a difference now because of compiler optimization, however, using a simple one would make understanding your code easier which in turn makes maintenance easier.