Scan more than one string in a QR code

0
Is it possible to read two strings and not only one, let’s say you’re scanning a QR code with: “FirstName: John“                                                                                                                                                                    “LastName: Doe” or for example ComputerName:John’s Computer, ID:123456789      
asked
1 answers
1

Gal,

As long as the whole string is read into your Mendix app, you can manipulate the string to extract different parts of it.  For instance, in this string    you could use string split (from community commons) twice  The first time you could split on comma(,) and then on each resulting string you could split on colon (:)

Hope that helps,

Mike

answered