String Handling Routines: Difference between revisions
imported>StDoodle |
imported>StDoodle |
||
Line 22: | Line 22: | ||
{{Flink|matcher|reset|matcher|{{opt|string}}|desc=Resets matcher to search from beginning of string, possibly with new input.}} | {{Flink|matcher|reset|matcher|{{opt|string}}|desc=Resets matcher to search from beginning of string, possibly with new input.}} | ||
{{Flink|int|group_count|matcher|desc=Returns the number of capturing groups in the pattern.}} | {{Flink|int|group_count|matcher|desc=Returns the number of capturing groups in the pattern.}} | ||
{{Flink|int|start|matcher|desc=Returns the starting index of the previous capturing group.}} | {{Flink|int|start|matcher|{{opt|int}}|desc=Returns the starting index of the previous or specified capturing group.}} | ||
{{Flink|int|end|matcher|desc=Returns the ending index of the previous capturing group plus 1.}} | {{Flink|int|end|matcher|{{opt|int}}|desc=Returns the ending index of the previous or specified capturing group plus 1.}} | ||
{{Flink|boolean|find|matcher|desc=Finds the next instance of the pattern or returns false if no more matches exist.}} | {{Flink|boolean|find|matcher|desc=Finds the next instance of the pattern or returns false if no more matches exist.}} | ||
{{Flink|string|group|matcher|{{opt|int}}|desc=Returns the contents of an indicated capturing group (starting at 1) or the entire pattern if not indicated.}} | {{Flink|string|group|matcher|{{opt|int}}|desc=Returns the contents of an indicated capturing group (starting at 1) or the entire pattern if not indicated.}} |
Revision as of 05:08, 15 March 2010
Simple
string today_to_string()
string visit_url( string )
string to_url( location )
boolean contains_text( string, string )
int [item] extract_items()
int length( string )
int index_of( string, string, [int] )
int last_index_of( string, string )
string substring( string, int, [int] )
buffer replace_string( buffer, string, string )
buffer replace_string( string, string, string )
string url_encode( string )
string url_decode( string )
string [int] split_string( string, [string] )
string [int,int] group_string( string, string )
string [int] session_logs( [string], int )
buffer append( buffer, string )
Regular Expressions
matcher create_matcher( string, string )
matcher reset( matcher, [string] )
boolean find( matcher )
string group( matcher, [int] )
string replace_all( matcher, string )
string replace_first( matcher, string )
buffer append_replacement( matcher, buffer, string )
buffer append_tail( matcher, buffer )