Difference between revisions of "Insert"

From Kolmafia
Jump to navigation Jump to search
imported>Heeheehee
m (Missed one. Whoops.)
imported>Heeheehee
m (I need to check stuff when I replace copy-pasted info. =P)
Line 20: Line 20:
 
}}|
 
}}|
  
function_description=Returns the buffer {{pspan|original}} with the string {{pspan|stuff}} inserted at {{pspan|strStart}} removed.|
+
function_description=Returns the buffer {{pspan|original}} with the string {{pspan|stuff}} inserted at {{pspan|strStart}}.|
  
 
code1={{CodeSample|
 
code1={{CodeSample|

Revision as of 03:28, 22 April 2010

Function Syntax

buffer insert(buffer original ,int strStart ,string stuff )

  • original is the buffer to modify
  • strStart marks where to insert the string
  • stuff is the string to insert

Returns the buffer original with the string stuff inserted at strStart.

Code Sample

Inserts a "Refresh page" link to the Pyramid inside KoL's default border.

buffer results;
results.append(visit_url());

int strEnd = results.index_of("height=137 border=0>");
if(strEnd > 0) {
   results.insert(strEnd + 20,"<br /><div align='center' class='tiny'><a href='pyramid.php'>Refresh page</a></div>");
}
results.write();

See Also

delete()