Hi guys,
I studied computer science but I seem to be totally misunderstanding regex in mp3tag. I mean, why is
$regexp(%title%,([a-z])+,_)
with
Drüg (feat. Emie)
producing
_D_r_ü_g_ _(_f_e_a_t_._ _E_m_i_e_)_
???
I expected
D_ü_ (____. E___)
$regexp(x,expr,repl)
replaces the pattern specified by the regular expressionexpr
in the stringx
byrepl
.