Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

DP QC STRREPLACE

From Quake Wiki

Revision as of 14:18, 29 February 2008 by KrimZon (talk | contribs) (New page: Builtin definitions: <pre> string(string search, string replace, string subject) strreplace = #484; string(string search, string replace, string subject) strireplace = #485; </pre> strrep...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Builtin definitions:

string(string search, string replace, string subject) strreplace = #484;
string(string search, string replace, string subject) strireplace = #485;

strreplace replaces all occurrences of 'search' with 'replace' in the string 'subject', and returns the result as a tempstring.

strireplace does the same but uses case-insensitive matching of the 'search' term.