Regular expression for network path
Unsolved
General and Desktop
-
Have a look at the documentation: http://doc.qt.io/qt-5/qregularexpression.html
If you use Qt5, I recommend you use QRegularExpression class instead of QRegExp class. Indeed, QRegularExpression API is clear and works better.See http://forum.qt.io/topic/37983/solved-problem-with-qregexp/4 and http://www.codeproject.com/Tips/729656/Reasons-to-abandon-and-replace-QRegExp-in-your-Qt.
Are you familiar with regular expression? Otherwise you should search tutorials on the Internet. And here is a fun website to learn by playing: https://regexcrossword.com/
If you have any further question, feel free to ask.