I have a string variable with a space separating an email address and a password. For example:
one_variable="[email protected] password"
I would like to separate the email address from the password and create two strings from it, like this:
email_variable="[email protected]"
password_variable="password"
How do I achieve this?