To take Date only

I want to get “Nov/02/2018” only from “A/O Circle (Dec/01/2017)”.
I cannot get it with regax.
I used this regax pattern

“(<=O/S Curve ()[\s\S]*”

Please Help me.

Best regards
Lwin Moe Aung

Please try this
\(([^)]+)\)

or you can do a substring after ( and take 11 char
yourstring.Substring(yourstring.IndexOf("(")+1, 11)

1 Like

@nadim.warsi
Thanks for reply.
I got it with your idea.:grinning:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.