Man, I am really trying to understand this. I am trying to trim the last 7 characters from my album field. I have been using a regular expression to trim the first three characters of the title like so:
Field = Title
Regular Expression = ^.{3}
Replace matches with = ""
Very simple and straight forward. I thought that it would be just as simple to do the last 7 (not trailing spaces " [YYYY]" with $.{7} . This obviously is not working. I am not good at scripting, I have been reding the forum for about an hours and I am just not getting it.