another question, why this doesn't match:
$regex(abc $+ $lf $+ def,^abc$) ?
the tutorial says that $ match at the end of the string or before a line feed
if u do $regex(abc $+ $lf,^abc$) it works, so why if u put something after the line feed it doesn't work ?