sample input (orgtext = a[crlf]b[space]c[crlf] )
I like to store each word a,b, c to the words array with the original suffix crlf or space. Currently calling SPLIT drops the suffix as its separator, but I like to store separator as well. Can I adjust regexp to return also suffix and still split?
Words = new Array;
var ar: Array = orgtext.split( /\s+/ );
for (var i:int = 0; i<ar.length;i++ )
{
Words.push( ar[i] +"suffix here" );
}
Generally you would use keep calling exec with an expression that uses the global (g) so that the lastIndex will be set.
Depending on the number of matches you can expect, it might be faster to use...
... which will capture all possible matches in one exec(). The matches will be available in result[1] ... result[n]