The following line of code is used to search for lines of source code that contains the text "#":
XPATH_RANK = '//span[contains(text(),"#")]//text()'
How can I modify this particular line of code to IGNORE certain text?
Please keep in mind that I know next to nothing about Python, and am only learning as I go along with this project for work.
Thanks in advance.