I am trying to get Organisation Name from below text it not matched with regex
Input:
1 Organisation
Organisation Name KPN B.V
Output: KPN B.V
Thanks
shaik
I am trying to get Organisation Name from below text it not matched with regex
Input:
1 Organisation
Organisation Name KPN B.V
Output: KPN B.V
Thanks
shaik
You can use the below regular expression to extract the required output,
(?<=Organisation Name\s+).*
Hope it helps!!
I need to get Organisation name from
1 Organisation
Organisation Name
thanks
shaik
Okay @shaik.muktharvalli1
Use the below expression,
(?<=1 Organisation\s+Organisation Name\s+).*
Hope it helps!!
Hello
Small update to @mkankatala’s pattern in case the number ‘1’ changes.
(?<=\d+ Organisation\s+Organisation Name\s+).*
Cheers
Steve
In that case just give the below expression by removing 1,
(?<=Organisation\s+Organisation Name\s+).*
Here is the xaml for your question. @shaik.muktharvalli1
hope so resolve the issue happy automation.
Regex.xaml (6.6 KB)