FBA The Creator

The True Multiplatform PC / PocketPC Opensource Development Tool - Read Only Mode - Kept only for historical purposes - Thank you all ;)
It is currently Thu Jun 04, 2026 2:41 am

All times are UTC




Post new topic  Reply to topic  [ 3 posts ] 
Author Message
PostPosted: Thu Apr 10, 2008 10:38 pm 
Offline
User avatar

Joined: Wed Mar 26, 2008 12:44 pm
Posts: 16
Ok after someone else mentioned doing a calculator i thought i'd have a go but it's proving difficult.
I have my user interface and I'm collecting numbers as pressed and I'm trying to do this with numerical variables e.g.

num = num * 10 + keypressed

to build up my integer then

num = num + keypressed/10 * count

to build up the fraction after the decimal place

Anyway I'm sure it would be a lot easier to collect and append characters in a string and then evaluate it all to a number at the end.

Is there an expression where I can add say "1" + "2" + "3" and it becomes "123" rather than being immediately treated as numbers and becoming 6 ?

_________________
Join us at http://www.gizmondoforums.com


Top
   
PostPosted: Thu Apr 10, 2008 10:47 pm 
Offline
FBA Administrator
FBA Administrator
User avatar

Joined: Fri Mar 21, 2008 11:19 pm
Posts: 238
Location: Rome - Italy
You have to use the LUA string concat operator:

Code:
..

instead of sum operator.

For example:
Code:
debug(1+2)
-- this will output: 3

Code:
debug ("1".."2")
-- this will output: "12"

Code:
a="hi"
b="to all"
debug(a .. " " .. b)
-- this will output: "hi to all"


Top
   
PostPosted: Fri Apr 11, 2008 7:44 am 
Offline
User avatar

Joined: Wed Mar 26, 2008 12:44 pm
Posts: 16
excellent thanks I'll try that later

_________________
Join us at http://www.gizmondoforums.com


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 3 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


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 post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Limited