Hi, i have an array with characters for example:
a = [ "412B24" , "2F5F95" , "708BB3" , "64459B" , "FC9CD6" , "660E4F"] ;
how can i convert this array with strings into just one string?
i would like to have as result this:
a = "412B242F5F95708BB364459BFC9CD6660E4F" ;
how can i achieve this?
thanks in advance
T.
1