convert an integers into a set of unique random numbers and decode it back

0
Hi All, I'd like to convert an integer into a set of unique random numbers and then decode it back. I've managed to achieve this using Java's encryption action, but the output is in string format, which we don't require.  
asked
1 answers
0

Hello Harshad,

 

I'm not into Java that much but can you not just use parseInt?

 

Otherwise you could use the parseInteger function in a Mendix activity to convert a string to an integer:

parseInteger('0')

 

Read more about it in the Mendix documentation:

https://docs.mendix.com/refguide/parse-integer/

answered