is it possible to remove everything to the first "-", including the "-"

example: i will remove "artist - " from "artist - album (year)"
thx for reply
the pi

Yes, it is possible. Even, there are two ways to achieve it using regular expressions. Just search for ".*? - " or "[^-]*- " and replace it with nothing.mr.pi wrote:hello folks,
is it possible to remove everything to the first "-", including the "-" :?:
example: i will remove "artist - " from "artist - album (year)"
thx for reply
the pi :D