Hello Everyone,
i’m struggling with the extraction of what is marked in red of the following String:
Please help me.
Is there any way to do it with String Manipulation instead of Regex?
Hello Everyone,
i’m struggling with the extraction of what is marked in red of the following String:
Please help me.
Is there any way to do it with String Manipulation instead of Regex?
Hi @snapval ,
Try the following:
For From:
InputString.Substring(InputString.IndexOf("From: ") + 6, InputString.IndexOf(Chr(10)) - (InputString.IndexOf("From: ") + 6)).Trim()
For Link:
InputString.Substring(InputString.IndexOf("Hi, press the following link ") + 29).Split(" "c)(0)
Regards,