Logic Machine Forum
Add different strings into one - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8)
+--- Thread: Add different strings into one (/showthread.php?tid=568)



Add different strings into one - josep - 19.01.2017

Hello, I have a various strings with day, month and year texts in ASCII and I need to merge all of this in only one adress, how I can make this? Thankyou...


RE: Add different strings into one - admin - 19.01.2017

Where are these strings coming from, are they stored in objects or inside of your script?


RE: Add different strings into one - josep - 19.01.2017

(19.01.2017, 11:16)admin Wrote: Where are these strings coming from, are they stored in objects or inside of your script?

In objects 

12/0/0 DAY
12/0/1 DAY NAME
12/0/2 MONTH
12/0/5 YEAR

and I need 12/0/0 + 12/0/1 + 12/0/2 + 12/0/5

THX!!


RE: Add different strings into one - Pawel - 19.01.2017

grp.getvalue("12/0/0") .. " " .. grp.getvalue("12/0/1") .. " " .. grp.getvalue("12/0/2") .. " " .. grp.getvalue("12/0/5")


RE: Add different strings into one - josep - 19.01.2017

Works fine, THX!