Register forum user name Search FAQ

Gammon Forum

Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the password reset link.

Due to spam on this forum, all posts now need moderator approval.

 Entire forum ➜ MUSHclient ➜ Jscript ➜ Retrieving one line from a variable

Retrieving one line from a variable

It is now over 60 days since the last post. This thread is closed.     Refresh page


Posted by Stratus   (25 posts)  Bio
Date Mon 15 Sep 2003 01:02 AM (UTC)
Message
Is there a way to retrieve one line from a variable? Like if my variable was:

Stratus:
hp 200
mp 200
mv 10

I need to retrieve only hp.

Trust me, Diet Coke isn't nearly as good as regular.
-Stratus
Top

Posted by Magnum   Canada  (580 posts)  Bio
Date Reply #1 on Tue 23 Sep 2003 10:25 AM (UTC)
Message

Dim MyVariable
Dim MyVarLines
MyVariable = "Stratus:" & Chr(10) & _
   "hp 200" & Chr(10) & "mp 200" & Chr(10) & _
   "mv 10"
MyVarLines = Split(MyVariable, Chr(10), -1, 1)
For x = LBound(MyVarLines) to UBound(MyVarLines)
  World.Note CStr(x) & ": " & MyVarLines(x)
Next

Get my plugins here: http://www.magnumsworld.com/muds/

Constantly proving I don't know what I am doing...
Magnum.
Top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


11,544 views.

It is now over 60 days since the last post. This thread is closed.     Refresh page

Go to topic:           Search the forum


[Go to top] top

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.