I have a simple list such as:
Health, Health Care, Health Options
My search term is the word "Health". When searching for "Health" I do not want to match "Health Care" and "Health Options" because technically those are different items on the list.
After reading Regex documentation I figured I was supposed to use a lookbehind to check for preceding text. But from what I understand those options are not present in the JS regex.
In summary I need to match a specific value in a group, where the group is a term before/after a comma.