I need some help. I need to escape some specific special character like semicolon, pipe, redirection and ampersand
from input string which is got by post method using python and Django. I am explaining my code below.
if request.method == 'POST':
rname = request.POST.get('react')
Here from the above input value I need to remove the special character. Please help me.