
C++11부터 표준 라이브러리를 정규식을 편리하게 사용할 수 있다. 정규식이 복잡한 듯 보여도 알아두면 이만큼 요긴한 것이 없다. #include #include #include #include int main() { std::string sample_str = "In the beginning God created the heavens and the earth." "Now the earth was formless and empty, darkness was over the surface of the deep, " "and the Spirit of God was hovering over the waters."; std::regex test_search("GOD", std::regex_constants::EC..
C | C++
2024. 3. 7. 20:22