I dont know is that duplicate or not,but i not found same(maybe i not found because it got hard title)
So,i have a this string:
string a = "(Hello(World),World(Hello))";
And i need to remove a first Bracket,and last Bracket. And get that output:
Hello(World),World(Hello)
I not need to remove first char and last. I need to remove first specific char(bracket) and last specific char(close bracket).
That says,if string is be:
string a = "gyfw(Hello(World),World(Hello))";
Output is be: gyfw Hello(World),World(Hello)