Replace function #4581
-
Sorry to do bother you guys here, but I asked a year ago #3948 and #4020 I got not answer. Problem
Here's what I have so far:
My goal is to have the tags written this way, don't care about how the filenames are written. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The |
Beta Was this translation helpful? Give feedback.
[<>:"\?\*\|]
is a regular expression (as the documentation mentions). It matches any of the following:<
>
:
"
?
*
|
The
replace
option only applies to paths and I'm not aware of any functionality in beets to allow replacing in tags - you'd need a new plugin to do that.