Is there any way of validating the user input which uses context variable?
My context variable stores the email address,so I would like the validation to check for the "@" sign.
Is there any way of doing this?
Is there any way of validating the user input which uses context variable?
My context variable stores the email address,so I would like the validation to check for the "@" sign.
Is there any way of doing this?
You can use the context variable with regex to extract the e-mail address, and after your code just validate the information, if the
variableEmail = context.mail
, do it... I cant help you with the code because you did not report your Programmation language.But, if you want to saves the mail address in a context variable. I made a conversation example so you know how to do it, here are the steps:
Part I:
Part II:
Part III:
The JSON files
Name example:
Mail example:
And finnaly, the result is:
If you want knows how to validate mail, search with the programming language you are developing the application and don't forget: the informations is saved inside:
context.name
orcontext.mail
, according to my example.