About Us
Products
Purchase
Downloads
Support
Forums
Contact Us
Site
 Register to post in forums, or Log in to your existing account
 

Play RetroMUD
Post new topic  Reply to topic     Home » Forums » CMUD Beta Forum
GeneralStonewall
Magician


Joined: 02 Feb 2004
Posts: 364
Location: USA

PostPosted: 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>
Reply with quote
Display posts from previous:   
Post new topic   Reply to topic     Home » Forums » CMUD Beta Forum All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

© 2009 Zugg Software. Hosted by Wolfpaw.net