[Solved] Capturing all method arguments default values
If you are trying to parse single or double quoted strings, it should be done in two steps. Validation, then parse for values. You could probably do both in a single regex with the use of a \G anchor, validating with \A\G and parsing with just the \G. If you are sure its valid, you … Read more