How to split any value after date

I need to split any value that is after date
Eg:12/31/2020 source and… here I need to split source ,it can be any value after date

Is there always a space after the date? Then just split on space and take item 1 from the resulting array.

Can you explain me in detail

If the date format and length is always the same you could use .substring(11)

If it isn’t you can split at the space with .split(" ")

If this has helped you, please mark this answer as the solution.

Hi @sruthesanju
I suggest you to use regex conditon

Hi @sruthesanju ,

You can also try substring method.
test.xaml (6.2 KB)

@sruthesanju

Check below for your reference

Hope this may help you

Thanks

Hi @sruthesanju
You can try with regex

Thanks and regards
Sudharsan