Contains text: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang mNo edit summary |
imported>Grotfang mNo edit summary |
||
Line 49: | Line 49: | ||
}}| | }}| | ||
see_also={{SeeAlso|visit_url|my_id|to_string}}| | |||
}} | }} |
Revision as of 14:36, 10 March 2010
Function Syntax
boolean contains_text(string str ,string substring )
- str is the string you want to test.
- substring is the substring you want to check is present inside str.
Returns true if substring can be found within str.
Code Samples
This function tests to see whether the string "Hello World!" contains the word "World".
boolean string_check(){
if(contains_text("Hello World!" , "World")){
return true;
}
return false;
}
This function tests to see whether a character is in a clan.
boolean in_clan(){
string character = visit_url("showplayer.php?who=" + my_id().to_string());
if(contains_text(character , "showclan.php?whichclan")){
return true;
}
return false;
}
See Also