Contains text

From Kolmafia
Revision as of 13:58, 27 March 2010 by imported>Heeheehee (Format-fixing.)
Jump to navigation Jump to search

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

visit_url() | my_id() | to_string()