#the literal # (3510 / 438 / 2316)
\s*any whitespace character, repeated any number of times
renovate:the literal text renovate: (case sensitive) \s*any whitespace character, repeated any number of times
Group 1(datasource=(?<datasource>.*?) )? ?repeats the group contents below at most once:
datasource=the literal text datasource= (case sensitive) Group datasource(?<datasource>.*?) .*?any character (except for line terminators), repeated any number of times
the literal (3210 / 408 / 2016)
depName=the literal text depName= (case sensitive) Group depName(?<depName>.*?) .*?any character (except for line terminators), repeated any number of times
Group 4( versioning=(?<versioning>.*?))? ?repeats the group contents below at most once:
versioning=the literal text versioning= (case sensitive) Group versioning(?<versioning>.*?) .*?any character (except for line terminators), repeated any number of times
\s*any whitespace character, repeated any number of times
.*?any character (except for line terminators), repeated any number of times
_VERSION=the literal text _VERSION= (case sensitive) Group currentValue(?<currentValue>.*) .*any character (except for line terminators), repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string