|
strRemoveWords |
|
strRemoveWords( const string, // string holding the sentence const start, // starting word, index based 1 [const count]) // # of words Remove words from a string. If count is omitted, all remaining words are removed. Example: const s = 'the quick brown fox jumps'; strRemoveWords(s,2,2); // 'the fox jumps' strRemoveWords(s,3); // 'the quick' |
||||||||
| Copyright © IBK Landquart | Last revision: 27.05.2002 | << Back Top Next >> |