Need to get organisation name from regex

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

Hi @shaik.muktharvalli1

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+).*