Remove Text from list
From UBot Studio
(Difference between revisions)
(Created page with " This command is an Advanced List command. This command will remove specified text from a list. '''List:''' The list containing the item that is being remov...") |
|||
Line 3: | Line 3: | ||
'''List:''' The list containing the item that is being removed. | '''List:''' The list containing the item that is being removed. | ||
+ | |||
'''Text to remove:''' The text being removed from the list. | '''Text to remove:''' The text being removed from the list. | ||
Revision as of 14:24, 6 June 2015
This command is an Advanced List command. This command will remove specified text from a list.
List: The list containing the item that is being removed.
Text to remove: The text being removed from the list.
Example
clear list(%my list) add list to list(%my list,$list from text("blue,white,green,yellow,purple",","),"Delete","Global") remove text from list(%my list,"purple","First") }
Running the command will remove the list item "purple" from the specified list.
Here is the list before the script is run.
Here is the list after the script is run.