I came across some regex’s and this thing got me confusing!
i am not able to understand what exatly it means:
[^>]*
could anypne please tell me.
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.
Match 0 or more characters, which are not
>. The^as the first item in character class[]will make the character class a negated character class, and any character after^are excluded.