String manipulation
I have to get abcd123(*)
In this i need to get abcd123
I need to remove ()
Sometimes we do not have ()
String manipulation
I have to get abcd123(*)
In this i need to get abcd123
I need to remove ()
Sometimes we do not have ()
Hi
You can use Regex for it to get string as you want but you said sometimes, so sometimes it comes without it?
Yes bro
Please tell regex also fine
Sometimes () will be there some times we didn’t have ()
We need to remove ()
not harming when not present
Inside () we will have number like this (4)
the pattern was defined to ungreedy remove everything with the ( )
@Arya_Squares Hello, You can try this: Split(str_CityName,“(”)(0).Trim
Split break the string from start of breaket and store in string array. First index will contain before the breaket part and second index will contain after start of break part…
Happy learning
Wait bro i will explain in detail
We are only going to have digit in the ()
Like this (3)
We need to remove complete (3)
it is generic and will work (you can also try by your self in your immediate panel)
As it is regex you can modify the pattern e.g restricting to only digits
and so on
Thank q soo much PPR
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.