I have a textbox. When the user enters the "
symbol. I had to strip that symbol before storing into the database. Please help. Any help will be appreciated
Django Code:
postDict = request.POST.copy()
profile = quser.get_profile()
profile.i_like= postDict['value']
profile=profile.save()