Is this possible?

Hi folks,

hope you "RegEx-Experts" :wink: can help me out with this one:

I want to store the Version Information (e.g. Remix, 12-Inch Version, etc.)
in a separate Field called %Version%.
Until now I have stored these information as part of the %title% field
(in square brackets, e.g. "02 - Raw Stylus - Use Me [Remix]").
Can I make an action to extract the text between the square brackets
and transfer it into the %version% field?

regards,
Frank

You can do it without regexp. Use the action Guess Value.

Without removing the version information from the title:

Action: Guess values
Source format: %title%
Guessing pattern: %dummy%[%version%]

If you want to remove the version information from your title, use this:

Action: Guess values
Source format: %title%
Guessing pattern: %title% [%version%]

A BIG THANK YOU, Stevest!
just perfect!