Hi There,
Below is a example of the metadata I'm trying to reformat.
In this case I would like to keep line 2 and 3.
I would like it to work whatever is written.
I found a site that let me test the regular expressions http://regex101.com/#python
Here I tried it with:
^(.)/n(.)/n(.)/n
^(.\n)(.\n)(.\n)
^(.\n|\r)(.\n|\r)(.*\n|\r)
This is the data to be tested:
LC 13373
AFRICA ETHNIC POP ETHNO POP
MID, walk,
MEDIUM, marche,
---------------------------------------------------------------------------
All rights reserved
Producer publisher
PARSIPARLA
3 rue des Aulnes
03000 AVERMES
FRANCE
tel fax 33 (0)4 70 20 65 10
info@parsiparla.com
www.parsiparla.com
In the site the 3 reg expr worked:
But when I apply one in mp3tag it doesn't
reg exp: ^(.)/n(.)/n(.*)/n
replace by:$2$3
This is the result from the test in mp3tag:
tel fax 33 (0)4 70 20 65 10
info@parsiparla.com
www.parsiparla.com
Thanks for reading and I hope somebody can point me to my errors.
Kind Regards
Guy Forssman