참고 블로그 ( replace 와 regex_replace 모두 깔끔하게 정리 잘 해놓으셨다👍👍 ) https://ponyozzang.tistory.com/678 C++ 문자열 치환 replace, regex_replace 사용 방법 예제 C++에서 문자열을 치환하는 방법을 알아보도록 하겠습니다. 문자열을 치환해주는 함수로 replace와 regex_replace가 있습니다. 대상 문자열에서 지정한 위치부터 원하는 문자로 바꿔줍니다. 또는 대상 ponyozzang.tistory.com regex_replace( 대상 문자열, regax(바꿀 문자열), 치환할 문자열) #include 필요 (regex == regular expression) #include #include #include using na..