Hi all
Jeg har copied this code from another .nfo:
$loop($num(%discnumber%,3)$num(%track%,4)%_filename_ext%)$num(%track%,2). %title%$repeat( ,$sub(57,$len(%title%))) [$replace(%length%,,:)]
$loopend()
I need to put this in
$replace(%title%,Å,Aa,å,aa,Æ,Ae,æ,ae,Ø,Oe,ø,oe,)
I can get it to work with:
$loop($num(%discnumber%,3)$num(%track%,4)%_filename_ext%)$num(%track%,2). $replace(%title%$repeat( ,$sub(57,$len(%title%))),Å,Aa,å,aa,Æ,Ae,æ,ae,Ø,Oe,ø,oe,) [$replace(%length%,,:)]
$loopend()
But then I mess up the aligenment with the %lenght% is moves the extra char if say Ø is replaced with OE.
How to I get about this? Thank you.