String Handling Routines

From Kolmafia
Revision as of 16:02, 29 October 2007 by 203.88.192.104 (talk)
Jump to navigation Jump to search

page kim sun ll finepix s20 pro fujifilm vasco padova on my knees the 411 rally race archos microfono jacinthe.info satx rr com dragonsex paps and scar d 12 my band mp3 hamlet hexd3u160 hd 3 5 sony 30 logger con progdvb Mansarda legno bagni fanghi keys asus a8n sli premium socket 939 garmin gps map 60 d j ralf webcam live ultra toshiba lcd hd usb slot volvo 80 cosmic girl episomes.info locus solus sportpress com www lanuch com captain of the heart luniz voralpen Sex dragon ball alfa 156 joaquin turina samsung dvd v6450 lq 2170 buzuki www burberry com mayta capac nec lt60lpk gurgaon non armarmi soundworks megaworks thx 5 1 550 davut guloglu overhit.info symbols ac adapter 5v yatsushiro goegle acer keyboard turn on url abilux weider 8950 aspire 5024wlmi gungrave blue guilty cueball home anna panka oikos robot da cucina scanner a 6 usb flash pen drive 512 liu gigi robbers handle bozveli norton ghost 9 0 Tushy doctor group b1vp sony server amd rima 1 steffi graf lemon tree fools garden call of duty pc eb x500 Goku nudo fce bank iraq strage nepal oyashio green day warning l a c700 missmark.info naked nancy agram monster sport keys channels x raccolte glober emerson dvd alpin extreme adsl cnet jacinthe.info covers dvd contras rm 926

Part 8 - String Handling Routines

Under Construction

void print( string helloworld )
void echo( string helloworld )
Prints the given string to the graphical CLI window and to the status line of the main Adventuring window.

string visit_url( string url )
Accesses the specified URL, manages any applicable redirects (including if the page offered a choice adventure), and returns the HTML of the final response page.

string location_to_url( location place )
Returns the URL that would need to be accessed to visit the specified location.

boolean contains_text( string source, string query )
Reveals if the query string is a substring of the source string.

int extract_meat( string text )
Returns the amount of meat contained in a string passed to it in integer format. For use in k-mail parsing. *Not for use on pending trades.*

int [item] extract_items( string text )
takes the text you have provided and parses it for any items that KoLmafia would have found normally. This means you have access to the built-in pluralization handler as well as the ability to NOT have to lookup description IDs or whatever other loops you had to use to access that information. For use in k-mail parsing. *Not for use on pending trades.*

int length( string text )
Returns the length of the given string.

int index_of( string source, string search )
Returns the first index of a given substring in a string.
int index_of( string source, string search, int start )
Returns the next index of a given substring in a string starting from the given position.
int last_index_of( string source, string search )
Returns the last index of a given substring in a string.

string substring( string source, int startfrom )
Returns the substring of the given string starting from the given character position in the string, and ending at the last character.
string substring( string source, int start, int end )
Returns the substring of the given string starting from the character position indicated by start in the string, and ending at the character position indicated by end.

string replace_string( string source, string search, string replace )
searches the source string for the search string and replaces all instances with the replace string

string url_encode( string text )
string url_decode( string text )
Converts a string text into a formatted string for using with raw URLs or from a formatted string back into “normal” text.

string [int] split_string( string source )
Returns a map of strings which is the passed string split into individual lines. Originally implemented for use when parsing session logs, but may see more uses in the future. http://kolmafia.us/index.php/topic,794.msg3868.html#msg3868
string [int] split_string( string source, string regex )
string [int,int] group_string( string source, string regex )
see this post located on the script repository for more information: http://kolmafia.us/index.php/topic,451.msg2235.html#msg2235

string [int] session_logs( string player, int day_count ) Gives access to the session logs saved by kolmafia. More details will be added when this function's own page is written. For now, more extensive details can be found here: http://kolmafia.us/index.php/topic,794.msg3879.html#msg3879