Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract parameter name without any firm pattern.
We want to extract everything that `NAME` contains in (`$param.<NAME> | $param.<NAME>[*]`) or (`param["<NAME>"] | $param["<NAME>"][*]`) or (`param['NAME'][*] | $param['<NAME>'][*]`). We dont want to enforce the pattern that it should follow. That part should be done by `Step 1` in #4799 (comment) The regex pattern substitution `.*?(\[\*\])?` matches and extracts everything that is contained in `<NAME>` or `<NAME>[*]`.
- Loading branch information