@raven_corwin
To match "&" symbols inside brackets using regex, you can use the following pattern:
Explanation:
- [ - The opening bracket "[" is escaped because it is a special character in regex.
- (.*?) - This is a non-greedy capture group that matches any character (zero or more times) inside the brackets.
- & - This matches the "&" symbol.
- ] - The closing bracket "]" is escaped because it is a special character in regex.
Overall, this regex pattern will match any "&" symbol located inside brackets.