i am trying to use regex_match to match specific string from regex string received from json file
the following will return false
regex_match ("pciereg044", regex(".*(pciereg041|pciereg047|pciereg044).*") )
where the following regex return true
regex_match ("pciereg044", regex(".*(pciereg041|pciereg044).*") )
it seems like the extra |string , are effecting my matching,what i am doing wrong ?