gdal icon indicating copy to clipboard operation
gdal copied to clipboard

Remove use of std::regex

Open rouault opened this issue 3 years ago • 1 comments

std::regex has implementation issues and will be deprecated in a future version of C++: https://github.com/sg16-unicode/sg16/issues/57 and https://github.com/r-spatial/sf/issues/1995#issuecomment-1246548294

We have probably no better alternative than doing poor-man hand std::string parsing if not using an external lib

std::regex is used in ogr/ogrsf_frmts/sqlite/ogrsqliteutility.cpp (I'll take care of that one) and ogr/ogrsf_frmts/hana/ogrhanatablelayer.cpp (CC @mrylov)

rouault avatar Sep 14 '22 10:09 rouault