Is it possible to use substr functionality to identify the next string to an identified character? For example I need the email address based on the Email Address: Jo@goo.com
How can I identify “Email Address” and then take Jo@goo.com, appreciate someone can share some thoughts on this… Thanks!
I’m currently using the code below but it needs to predefined the number of characters which is not possible as email address is dynamic…
Where (Pos([Variable];: )+1) calculates the starting point of the email in the string and (Length([Variable] - (Pos([Variable];: )+1)) calculates the number of characters in the email. I am assuming [Variable] is the string that you are trying to parse.
Do you get the same error if you have this formula =Length([Variable]) stand alone?
I think I forgot to put the ) . This is the corrected formula
=Substr([Variable]; (Pos([Variable];: )+1);(Length([Variable]) - (Pos([Variable];: )+1)))