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
➜ General
➜ Convert string to number
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Tkl1129
Hong Kong (43 posts) Bio
|
Date
| Wed 13 Jul 2011 04:06 AM (UTC) |
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
| Top |
|
Posted by
| Nick Gammon
Australia (23,158 posts) Bio
Forum Administrator |
Date
| Reply #1 on Wed 13 Jul 2011 04:52 AM (UTC) 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 | Top |
|
Posted by
| Twisol
USA (2,257 posts) Bio
|
Date
| Reply #2 on Wed 13 Jul 2011 05:52 AM (UTC) |
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 | 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.
16,046 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top