I have the following strings:
"184500000712_1_new_store1",
"184500000712_4_new_store1",
"184500000712_12_new_store1",
"195600000819_1_new_store2",
...
I am trying to turn each individual string into a unique 10-digit code like so:
184500000712_1_new_store1 => K14K4O9WVQ
184500000712_4_new_store1 => E93N7L2PXC
184500000712_12_new_store1 => A89F5I6JIO
195600000819_1_new_store2 => J00B1I5KFU
Also the string-to-code output must always be consistent. Fe, utf-8 base64 encoding of the string 184500000712_1_new_store1
would always output the code MTg0NTAwMDAwNzEyXzFfbmV3X3N0b3JlMQ==
Thanks!