Hi again, I was having a problem using the $replace function. I had an existing track as:
Let It Grow (San Francisco CA, Winterland Arena, February 2nd 1974)
I want to select all tracks, Convert → Tag - Tag…
I want to change:
(San Francisco CA, Winterland Arena, February 2nd 1974) to
(San Francisco CA, Winterland Arena, February 22nd 1974)
But, I have a space character before the first “(“ both on what is there and what I want to replace with. The syntax seems to be perl like and I was not sure if I should double quote the strings and do I have to escape the “(“ and “)”, should I have a space after the , ?
I tried:
$replace(%title%,(San Francisco CA, Winterland Arena, February 2nd 1974),(San Francisco CA, Winterland Arena, February 22nd 1974))
I was not sure if putting a space after the comma affects things (or do I need quotes):
$replace(%title%, “ (San Francisco CA, Winterland Arena, February 2nd 1974)”, “ (San Francisco CA, Winterland Arena, February 22nd 1974)”)
If this were some code I were writing I would naturally put a space after the commas to help separate the parameters as I have it above.
Could you tell me what would be the full correct syntax for the above?
I had:
Let It Grow (San Francisco CA, Winterland Arena, February 2nd 1974)
And want:
Let It Grow (San Francisco CA, Winterland Arena, February 22nd 1974)
There is one space before the ( and no space after the )
Thanks for you help with this. (This was just one track, I wanted to select all and apply the same replace operation to all.)