[Home] [Downloads] [Search] [Help/forum]

Gammon Software Solutions forum

See www.mushclient.com/spam for dealing with forum spam. Please read the MUSHclient FAQ!

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  General
. . -> [Subject]  Convert string to number

Home  |  Users  |  Search  |  FAQ
Username:
Register forum user name
Password:
Forgotten password?
(New message)
Subject: Convert string to number
Name:
Your forum user name.
Register forum user name
Password:
Your forum password.
Forgotten password?
Message:
Message to be posted (in English, please)
Maximum of 6000 characters. Text only please, no HTML.
Forum codes:
Check this if your message uses 'forum codes' or templates (auto-detected for new posts).
Forum codes Templates

Save this message ...


Subject review (reverse sequence)

Posted by Twisol   USA  (2,230 posts)  [Biography] bio
Date Wed 13 Jul 2011 05:52 AM (UTC)  quote  ]
Message
Tkl1129 said:
how ever..this format is string, cannot add up to be result...any method or any other idea to make this work?


local result = loadstring("return " .. your_string)()


The loadstring() function takes a string and compiles it as Lua, returning a function. So if you attach "return " before your arithmetic you can evaluate the math.

'Soludra' on Achaea

Blog: http://jonathan.com/
GitHub: http://github.com/Twisol
[Go to top] top

Posted by Nick Gammon   Australia  (18,800 posts)  [Biography] bio   Forum Administrator
Date Wed 13 Jul 2011 04:52 AM (UTC)  quote  ]

Amended on Wed 13 Jul 2011 04:53 AM (UTC) by Nick Gammon

Message
http://www.gammon.com.au/forum/?id=10155


This is now supplied with MUSHclient, see the module:

words_to_numbers.lua

That ships in the MUSHclient "lua" directory.


- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Tkl1129   Hong Kong  (43 posts)  [Biography] bio
Date Wed 13 Jul 2011 04:06 AM (UTC)  quote  ]
Message
I want to convert a text format number to real digit number, but got fail at last, any suggestion? (actually I'm converting chinese word so the format is different.

Case : two thousand one hundred and six
result : 2106

I get start to use string.gsub to convert it become like this -> x = 2*1000+1*100+6
= 2000 + 100 + 6
= 2106

how ever..this format is string, cannot add up to be result...any method or any other idea to make this work?
thanks~


function convertdigit (a)

local x = a
	x = string.gsub (x,"ten","*10+")
        x = string.gsub (x,"hundred","*100+")
	x = string.gsub (x,"thousend","*1000+")
	x =	string.gsub (x,"one","1")
	x =	string.gsub (x,"two","2")
	x =	string.gsub (x,"three","3")
	x =	string.gsub (x,"four","4")
	x =	string.gsub (x,"five","5")
	x =	string.gsub (x,"six","6")
	x =	string.gsub (x,"seven","7")
	x =	string.gsub (x,"eight","8")
	x =	string.gsub (x,"nine","9")
	x =	string.gsub (x,"zero","0")

return r
end -- convertdigit



[Go to top] 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.


1,040 views.

[Reply to this subject]  Reply to this subject   [New subject]  Start a new subject   [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

[Home]

Written by Nick Gammon - 5K

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Internet Contents Rating Association (ICRA) - 2K]    [Web site powered by FutureQuest.Net]