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


Register forum user name Search FAQ

Gammon Forum

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

Convert string to number

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


Posted by Tkl1129   Hong Kong  (43 posts)  [Biography] 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



[Go to top] top

Posted by Nick Gammon   Australia  (22,975 posts)  [Biography] 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
[Go to top] top

Posted by Twisol   USA  (2,257 posts)  [Biography] 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
[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.


14,060 views.

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

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

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

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

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

[Best viewed with any browser - 2K]    [Hosted at HostDash]