# C++을(를) 사용하여 PPT 프레젠테이션 파일 수정

> PPT Presentation에서 텍스트를 찾고 교체하기 위한 C++ 소스 코드.

Source: https://products.aspose.com/slides/ko/cpp/redaction/ppt/
Updated: 2023-05-17



## C++을(를) 통해 PPT 프레젠테이션 수정

Aspose.Slides for C++ API를 사용하여 콘텐츠, 댓글, 슬라이드 노트 또는 메타데이터의 기본 문서 검색 및 텍스트 바꾸기를 단 몇 줄의 코드로 수행할 수 있습니다. PowerPoint 및 OpenOffice에서 텍스트를 찾고 바꿉니다. 정규식 데이터 일치를 통해 프레젠테이션의 텍스트, 주석, 메타데이터를 편집합니다.

### C++을(를) 사용하여 PPT 프레젠테이션 수정

```cpp

auto presentation = System::MakeObject<Presentation>(u"welcome-to-powerpoint.ppt");

SlideUtil::FindAndReplaceText(presentation, true, u"PowerPoint", u"Aspose.Slides", nullptr);
presentation->Save(u"replaced.ppt", SaveFormat::Ppt);
```

## C++을 통해 PPT을(를) 수정하는 방법

다음은 PPT 파일을 수정하는 단계입니다.

프레젠테이션 인스턴스로 PPT를 로드합니다.

[FindAndReplaceText](https://reference.aspose.com/slides/cpp/aspose.slides.util/slideutil/findandreplacetext/) 메서드를 사용하여 텍스트를 찾고 바꿉니다.

결과를 PPT 형식으로 저장

## 기타 지원되는 교정 형식
