Written by marcelpetrick
on January 29, 2019
How to locate all includes of that style:
1 |
#include <QtWidgets/qcombobox.h> |
with proper
1 |
#include <QtWidgets/QComboBox> |
Fired up https://regex101.com/ and set it to PHP and created an expression, which matches:
starting with slash, then a q, then characters, then . then h
1 |
\/[qQ][a-zA-Z]+\.h |
(Replace & check has to be done by YOU ;))