getmusicbee.com

Support => Questions => Topic started by: adac on April 04, 2018, 07:51:23 AM

Title: First Word of a <tag>
Post by: adac on April 04, 2018, 07:51:23 AM
Hi, how can I shorten a <tag> with regex. For example: "Sampler [Series]" in "Sampler" or "Album [Studio]" in "Album" ?.

Many thanks for your help

adac
Title: Re: First Word of a <tag>
Post by: redwing on April 04, 2018, 08:16:25 AM
find:
Code
^([\S]+).*
replace:
Code
$1
Title: Re: First Word of a <tag>
Post by: adac on April 04, 2018, 08:36:27 AM
it works

many thanks