INTERACT FORUM

More => Old Versions => Media Center 12 (Development Ended) => Topic started by: llafriel on March 14, 2008, 12:38:32 pm

Title: Function Replace(...), parenthesis problem
Post by: llafriel on March 14, 2008, 12:38:32 pm
I'm trying to remove "(OST)" from my soundtrack albums in a view scheme. All my soundtracks have "(OST)" in their album names. So I try with this function:
   Replace([Album], (OST))
This removes "(OST", but adds "))" on the end of the album names. It seems the function ends when it sees the first right parenthesis. Is there a workaround for this?
Title: Re: Function Replace(...), parenthesis problem
Post by: Matt on March 14, 2008, 02:09:19 pm
You need to escape the parenthesis with a slash.

So:
Replace([Album], /(OST/))
Title: Re: Function Replace(...), parenthesis problem
Post by: llafriel on March 14, 2008, 03:34:05 pm
Worked perfectly, thanks!