I figured out why it works in the Search and Replace but not the tag matcher.
The S&R looks for an instance of the pattern, while the tag mapper tries to match to the complete tag.
Although I don't have a complete solution, here's a partial solution.
Pattern: (.+) / (.+)
Replace: \1,\2
This will work in cases where there's only one division (space-slash-space) in each tag. Maybe someone smarter than me can figure out how to fix it so it works for an arbitrary number of divisions.
|