I have a movie name that needs a colon in but in {n}=" The Rescuers Down Under" and I would like to put a colon between Rescuers and Down Under using the ratio symbol. Such as The Rescuers ∶ Down Under.

Thank you oh so much JTM
Code: Select all
{ n.colon('∶ ') }
Code: Select all
Star Wars∶ Episode III - Revenge of the Sith
is the correct name in all places/ languages I can find, so if you REALLY want the colon just rename in windows explorerThe Rescuers Down Under
Code: Select all
{n}
Code: Select all
{'the rescuers : down Under'}
Code: Select all
{n.replaceAll(/.+/,'the rescuers : down Under')}
Code: Select all
{n.replaceAll(/The Rescuers Down Under/,'the rescuers : down Under')}
Code: Select all
{n.replace('The Rescuers Down Under','the rescuers : down Under')}
Code: Select all
{"Main Character∶ "} {n.replace("Rudolph The Red Nosed Reindeer","Rudolph")}