I thought I was doing \[/b\]
but the machine disagrees.
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.
\[ \]should do just fine. At least in the Java regular expression engine.Not sure where you get the
/bfrom. Perhaps you’re after a “blank” character. The most common expression for whitespace characters is\s. I.e., you could do\[\s\].(Matching balanced
[]is another story though. A task which regular expression are not very well suited for.)