I have this string in the href of a tag –
member.php?mode=&g=user&start=100
Now my BeautifulSoup is parsing it as –
memberlist.php?mode=&g=user&start=100
which is not giving the desired page –
what is this & and how can i fix that
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.
It’s a special string that represents an ampersand character ie “&”.
EDIT: I’ve just tried to reproduce this using code from your other SO question and it works correctly.
What version of Beautiful Soup are you using?