What would be the Java regular expression to match a Java method return type such as the following:
ArrayList<CodeObject>
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.
Given the existence of:
just for starters, I’m going to claim that this is a bad job for a regexp. Regexps are not good at matching nested items. See this post for the deleterious effects on mental health of trying.
For the simple case I think the following would serve.