@mallory_cormier
To match with "*" but not with "/*", you can use a negative lookbehind assertion in your regex pattern. Here is an example of a regex pattern that matches with "*" but not with "/*":
1
|
(?<!/)* |
Explanation:
This regex pattern will match with any occurrence of "*" that is not preceded by a "/".