error while using regex_replace function from

后端 未结 2 717
后悔当初
后悔当初 2021-01-20 05:18
#include 
#include 

#include \"TextProcessing.h\"

const std::string URL_PATTERN(\"((http://)[-a-zA-Z0-9@:%_\\\\+.~#?&//=]+)\");
         


        
2条回答
  •  爱一瞬间的悲伤
    2021-01-20 05:25

    Your standard C++ library does not have complete c++0x (now c++1x?) support. Try using Boost's code. See also this answer.

提交回复
热议问题