Contains

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
Line 20: Line 20:
  
 
</pre>
 
</pre>
 +
  
 
The contains qualifier evaluates the contents of the list %my list and checks to see if the text "Orange exists".
 
The contains qualifier evaluates the contents of the list %my list and checks to see if the text "Orange exists".
  
 
Since the text "Orange" does not exist int he list, the else command runs.
 
Since the text "Orange" does not exist int he list, the else command runs.
 +
  
 
[[File:contains0.png]]
 
[[File:contains0.png]]
Line 42: Line 44:
  
 
This script will be searching for the word "Apple" within the list. Since the word "Apple" exists in the list, the then command runs.  
 
This script will be searching for the word "Apple" within the list. Since the word "Apple" exists in the list, the then command runs.  
 +
  
 
[[File:contains.png]]
 
[[File:contains.png]]

Revision as of 19:50, 20 May 2013

This function is a Qualifier Function. This functions returns whether or not the text contains the search text.

Text: refers to the list, variable, table cell or text you are evaluating.

Text to Search For: refers to the text that is being search for in the list, variable, table cell or text. The function also accepts variables and functions such as $next list item, $list item, $random list item, $previous list item, and $table cell.

Example

add list to list(%my list, $list from text("Apple,Banana,Plum,Persimmon", ","), "Delete", "Global")
if($contains(%my list, "Orange")) {
    then {
        navigate("google.com", "Wait")
    }
    else {
        navigate("ubotstudio.com/resources", "Wait")
    }
}


The contains qualifier evaluates the contents of the list %my list and checks to see if the text "Orange exists".

Since the text "Orange" does not exist int he list, the else command runs.


File:Contains0.png

add list to list(%my list, $list from text("Apple,Banana,Plum,Persimmon", ","), "Delete", "Global")
if($contains(%my list, "Apple")) {
    then {
        navigate("google.com", "Wait")
    }
    else {
        navigate("ubotstudio.com/resources", "Wait")
    }
}


This script will be searching for the word "Apple" within the list. Since the word "Apple" exists in the list, the then command runs.


File:Contains.png

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox