Difference between revisions of "Substr"
From SDU
m |
m |
||
| Line 3: | Line 3: | ||
[[Category:r6]] | [[Category:r6]] | ||
[[Category:r11]] | [[Category:r11]] | ||
| + | [[Category:Spel Code]] | ||
{{Global Header}} | {{Global Header}} | ||
{{Global Announcement}} | {{Global Announcement}} | ||
Revision as of 15:52, 3 September 2008
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.
To discuss or ask questions about this article, select the discussion tab above.
Overloaded method to return a string within a string
string substr(string str, int start, int finish)
string substr(string str, int start) // reads to the end of the string for finish
Can be used in conjuction with sindex to retrieve start index.
eg.
string myString;
string otherString;
otherString = "this is a string";
myString = substr(otherString,sindex(otherString,"a"));
// myString = "a string"