Regular expressions in c++ STL

前端 未结 3 984
青春惊慌失措
青春惊慌失措 2021-01-02 10:41

Is there any native library in STL which is tested and works without any extra compiler options? I tried to use , but the compiler outputs this:

3条回答
  •  我在风中等你
    2021-01-02 11:24

    You could try using Boost.Regex instead of the c++0x headers.
    Also the STL is not the same thing as the standard library. It used to stand for "Standard Template Library" back when that was an offering of SGI. The standard library did not adopt everything int the STL (rope and slist) and covers much more ground than the STL did (iostreams, all the tr1, tr2, and c++0x headers).

提交回复
热议问题