KGergo88 / RDB_Monitor

A generic measurement display program originally developed for the RDB Diplomaterv project
GNU General Public License v3.0
2 stars 1 forks source link

Review and update the regex patterns in the measurement data protocol #18

Open KGergo88 opened 5 years ago

KGergo88 commented 5 years ago

Description

The project currently using the std::regex namespace for all the regular expression related tasks. Unfortunately this does not support more advanced regex functionalities, like named groups. It would make sense to review the regex related parts of the project and rewrite them with using the Qt regex features.

Todo

KGergo88 commented 3 years ago

An example for the Qt regexes can be found in the CMDP class. See #36.