What would be the appropriate regex to remove all the [?] from the line as such:
/Hello[1]/World[2]/Foo[3]
/Bar[3]/Foo[2]
etc.
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.
for any symbol beetwin
[]replace regex\[.+?\]with empty stringfor digits
\[\d+?\]