Replace string: Difference between revisions
Jump to navigation
Jump to search
imported>Icon315 No edit summary |
imported>Heeheehee m Formatting to eliminate template-breaking. |
||
Line 36: | Line 36: | ||
code=<syntaxhighlight> | code=<syntaxhighlight> | ||
void Icon_Charpane() | void Icon_Charpane() | ||
{ | { | ||
buffer results; | |||
results.append(visit_url()); | |||
if ( my_fullness() >= 1 ) | |||
results.replace_string("<img src=\"/images/itemimages/hp.gif\"", "<tr><paragraph>Fullness:<b> "+my_fullness() | |||
+"/"+fullness_limit()+"</b></tr><td align='center'><img src=\"/images/itemimages/hp.gif\""); | |||
if ( my_spleen_use() >= 1 ) | |||
results.replace_string("<img src=\"/images/itemimages/hp.gif\"", "<tr>Spleen:<b> "+my_spleen_use()+"/"+spleen_limit() | |||
+"</b></tr><td align='center'><img src=\"/images/itemimages/hp.gif\""); | |||
results.write(); | |||
if ( my_spleen_use() >= 1 ) | |||
results.replace_string("<img src=\"/images/itemimages/hp.gif\"", "<tr>Spleen:<b> "+my_spleen_use()+"/"+spleen_limit()+"</b></tr><td align='center'><img src=\"/images/itemimages/hp.gif\""); | |||
} | } | ||
Revision as of 01:54, 11 April 2010
needs(code_samples);
Function Syntax
buffer replace_string(buffer original ,string find ,string replace )
buffer replace_string(string original ,string find ,string replace )
- original is the starting string or buffer
- find is the text to find in original
- replace is the text to substitute for find
Searches through the supplied original text, replacing every instance of find with replace, and returns the result.
Code Sample
Will place your Fullness and Spleen above the HP Image
void Icon_Charpane()
{
buffer results;
results.append(visit_url());
if ( my_fullness() >= 1 )
results.replace_string("<img src=\"/images/itemimages/hp.gif\"", "<tr><paragraph>Fullness:<b> "+my_fullness()
+"/"+fullness_limit()+"</b></tr><td align='center'><img src=\"/images/itemimages/hp.gif\"");
if ( my_spleen_use() >= 1 )
results.replace_string("<img src=\"/images/itemimages/hp.gif\"", "<tr>Spleen:<b> "+my_spleen_use()+"/"+spleen_limit()
+"</b></tr><td align='center'><img src=\"/images/itemimages/hp.gif\"");
results.write();
}
void main()
{
Icon_Charpane();
}
Special
Matches are made left-to-right, and once a portion of the supplied original is noted as a match, searching continues from the next character after said match.
Attention KoLmafia Experts!
We need your help; some details of this function's operation are unknown or unclear.
The following specific questions have been raised:
- Is the special note correct, or is the behavior different?
- I'm having a hard time clarifying what I mean... see Discussion page