IMDB TV Shows
IMDB TV Shows
Is there a way to stop IMDB from showing TV show titles as "whatever". Meaning to remove the quotes?
Search for the line
and replace it by
This will remove all " " of original title.
Code: Select all
SetField(fieldOriginalTitle, Value2);
Code: Select all
SetField(fieldOriginalTitle, StringReplace(Value2, '"', ''));