I need to remove enclosing brackets from a string in C# in code-behind.
For example, if I have a string as [My [] Groups], I want to turn it into My [] Groups.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The simplest way of addressing this using the string from your example would be taking a substring:
This works only when you are 100% certain that the first and the last characters are indeed square brackets. If they are not, for example, when the string is untrimmed, you may need to perform additional string manipulations (e.g. trimming the string).