Lets say we have this string: [18] email@email.com:pwd:
email@email.com is the email and pwd is the password.
Also, lets say we have this variable with a value
f = "[18] email@email.com:pwd:"
I would like to know if there is a way to make two other variables named var1 and var2, where the var1 variable will take the exact email info from variable f and var2 the exact password info from var2.
The result after running the app should be like:
var1 = "email@email.com"
and
var2 = "pwd"
