Is removing trailing spaces from the Title field something that I could do with RemoveBadChars.ifs
I imported Titles without checking for trailing spaces first.
Remove trailing Spaces from Title field
I am not sure if it does, but you could probably just use a simple script like this:
(note that it will also remove leading spaces if there are any, but I guess it is not a problem)
Code: Select all
Program NewScript;
var
s: string;
begin
s := GetField(fieldOriginalTitle);
s := Trim(s);
SetField(fieldOriginalTitle, s);
end.