This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Add different strings into one
#1
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...
Reply
#2
Where are these strings coming from, are they stored in objects or inside of your script?
Reply
#3
(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!!
Reply
#4
grp.getvalue("12/0/0") .. " " .. grp.getvalue("12/0/1") .. " " .. grp.getvalue("12/0/2") .. " " .. grp.getvalue("12/0/5")
Reply
#5
Works fine, THX!
Reply


Forum Jump: