Returns a string representing the reverse of the specified list.
FlipList(List,Delimiter:String):String
List specifies the list of strings to flip.
Delimiter is the character to use to delineate items in the string list. Supported special characters:
[comma]
[space]
[tab]
Note: | You must use the name of the delimiter (not the character) and include brackets around the name. |
FlipList(DietCola;Orange Soda;Root Beer;Lemonade,[comma])
Return value is Lemonade,Root Beer,Orange Soda,Diet Cola.