I am interested in writing a script/tool to parse C++ code in order to find lines when division is being used. I guess this could be accomplished by simply doing a search on "/" on all of the code. Only problem is that this will return lines with comments as well.
Do you have any suggestions on how to implement this?