How do I remove a character from specific character to specific character …
Example
string a = " Hello ! {ssd} jksssss";
In above string i want to remove character from ‘{‘ to ‘}’
output -- > `Hello ! jksssss`
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.
You can use the
Regexclass inSystem.Text.RegularExpressions, to do the replace. For example:EDIT:
If you want to match multiple occurrances of curly braces, and replace each one, use this regular expression instead: