GeneralStonewall Magician
Joined: 02 Feb 2004 Posts: 364 Location: USA
|
Posted: Fri Jun 11, 2010 6:00 am
[3.19+] Suggestion: %word( string, -n) connotation |
It'd be nice if we could use %word( string, -n) to return all of the Nth and later words in a string. Much like %-1. Another alternative could be %words, which wouldn't require a negative sign. Easily made, but I think it'd be pretty handy to be included.
Here's what I threw together:
Code: |
<?xml version="1.0" encoding="ISO-8859-1" ?>
<cmud>
<func name="words" copy="yes">
<value>#IF (%null( $delimiter)) {
$delimiter = " "
}
#LOOP %eval( $n - 1) {
$pos = %pos( $delimiter, $string)
#IF ($pos > 0) {
$string = %right( $string, $pos)
} {
#RETURN %null
}
}
#RETURN $string</value>
<arglist>$string, $n, $delimiter</arglist>
</func>
</cmud>
|
|
|