 |
Ralph1971 Wanderer
Joined: 01 Mar 2008 Posts: 64
|
Posted: Fri Feb 25, 2011 12:23 am
extracting data from a variable |
I have a variable... pop1..
takes the %time, converts it to seconds, adds XXXX seconds to it, then reconverts it back to time.. the resulting variable looks like this..
0 days 19 hours 12 minutes 48 seconds
I want to extract the 19, and 17 to be able to put it in my title on a char on the mud I play..
XXX the avatar says repop at approx 19:17 |
|
|
 |
charneus Wizard

Joined: 19 Jun 2005 Posts: 1876 Location: California
|
Posted: Fri Feb 25, 2011 12:44 am |
Code: |
#CALL %regex(@pop1,"(\d+) hours (\d+) minutes",$hours, $minutes) |
Then you can do:
Code: |
say repop at approx $hours:$minutes |
.
Look up the help file for %regex. You can also use %match do the same thing with zscript. I'm just in the habit of using regex. |
|
|
 |
|
|
|
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
|
|