Java용 Aspose.Words에서 텍스트 찾기 및 바꾸기
Aspose.Words for Java에서 텍스트 찾기 및 바꾸기 소개
Aspose.Words for Java는 Word 문서를 프로그래밍 방식으로 작업할 수 있는 강력한 Java API입니다. Word 문서를 다룰 때 일반적인 작업 중 하나는 텍스트를 찾아 바꾸는 것입니다. 템플릿에서 자리 표시자를 업데이트하거나 더 복잡한 텍스트 조작을 수행해야 하는 경우 Aspose.Words for Java가 목표를 효율적으로 달성하는 데 도움이 될 수 있습니다.
필수 조건
텍스트 찾기 및 바꾸기에 대한 세부 사항을 살펴보기 전에 다음과 같은 전제 조건이 충족되었는지 확인하세요.
- 자바 개발 환경
- Java 라이브러리를 위한 Aspose.Words
- 작업할 샘플 Word 문서
Aspose.Words for Java 라이브러리는 다음에서 다운로드할 수 있습니다.여기.
간단한 텍스트 찾기 및 바꾸기
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// DocumentBuilder 만들기
DocumentBuilder builder = new DocumentBuilder(doc);
// 텍스트 찾기 및 바꾸기
builder.getRange().replace("old-text", "new-text", new FindReplaceOptions());
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예에서 우리는 Word 문서를 로드하고DocumentBuilder
, 그리고 사용하세요replace
문서 내에서 “이전 텍스트"를 “새 텍스트"로 찾아 바꾸는 방법입니다.
정규 표현식 사용
정규 표현식은 텍스트 검색 및 바꾸기에 강력한 패턴 매칭 기능을 제공합니다. Aspose.Words for Java는 보다 고급 찾기 및 바꾸기 작업을 위한 정규 표현식을 지원합니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// DocumentBuilder 만들기
DocumentBuilder builder = new DocumentBuilder(doc);
// 정규 표현식을 사용하여 텍스트를 찾고 바꾸세요
Pattern regex = Pattern.compile("your-pattern");
builder.getRange().replace(regex, "replacement-text", new FindReplaceOptions());
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예제에서는 정규 표현식 패턴을 사용하여 문서 내에서 텍스트를 찾아 바꿉니다.
필드 내부의 텍스트 무시
찾기 및 바꾸기 작업을 수행할 때 필드 내부의 텍스트를 무시하도록 Aspose.Words를 구성할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 IgnoreFields를 true로 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setIgnoreFields(true);
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace("text-to-replace", "new-text", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 기능은 병합 필드와 같이 필드 내부의 텍스트를 바꾸지 않으려는 경우에 유용합니다.
수정 사항 삭제 내부 텍스트 무시
찾기 및 바꾸기 작업 중에 삭제 수정본 내부의 텍스트를 무시하도록 Aspose.Words를 구성할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 IgnoreDeleted를 true로 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setIgnoreDeleted(true);
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace("text-to-replace", "new-text", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이렇게 하면 추적된 변경 내용에서 삭제로 표시된 텍스트가 바뀌지 않도록 제외할 수 있습니다.
삽입 수정 사항 내부의 텍스트 무시
찾기 및 바꾸기 작업 중에 삽입 수정 내용 내부의 텍스트를 무시하도록 Aspose.Words를 구성할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 IgnoreInserted를 true로 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setIgnoreInserted(true);
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace("text-to-replace", "new-text", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이렇게 하면 추적된 변경 내용에서 삽입으로 표시된 텍스트가 바뀌지 않도록 제외할 수 있습니다.
텍스트를 HTML로 바꾸기
Java용 Aspose.Words를 사용하면 텍스트를 HTML 콘텐츠로 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 사용자 정의 대체 콜백을 사용하여 FindReplaceOptions 인스턴스를 만듭니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setReplacingCallback(new ReplaceWithHtmlEvaluator(options));
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace("text-to-replace", "new-html-content", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예에서 우리는 사용자 정의를 사용합니다ReplaceWithHtmlEvaluator
텍스트를 HTML 콘텐츠로 대체합니다.
헤더와 푸터의 텍스트 바꾸기
Word 문서의 머리글과 바닥글에서 텍스트를 찾아 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 헤더와 푸터 컬렉션 가져오기
HeaderFooterCollection headersFooters = doc.getFirstSection().getHeadersFooters();
// 텍스트를 바꿀 머리글 또는 바닥글 유형을 선택합니다(예: HeaderFooterType.FOOTER_PRIMARY)
HeaderFooter footer = headersFooters.getByHeaderFooterType(HeaderFooterType.FOOTER_PRIMARY);
// FindReplaceOptions 인스턴스를 생성하고 이를 바닥글 범위에 적용합니다.
FindReplaceOptions options = new FindReplaceOptions();
footer.getRange().replace("text-to-replace", "new-text", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이를 통해 머리글과 바닥글에서만 텍스트 바꾸기가 가능합니다.
헤더 및 푸터 순서에 대한 변경 사항 표시
Aspose.Words를 사용하면 문서의 머리글과 바닥글 순서에 대한 변경 사항을 표시할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 첫 번째 섹션을 받으세요
Section firstPageSection = doc.getFirstSection();
//FindReplaceOptions 인스턴스를 생성하여 문서 범위에 적용합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setReplacingCallback(new ReplaceLog());
// 헤더 및 푸터 순서에 영향을 미치는 텍스트 바꾸기
doc.getRange().replace(Pattern.compile("(header|footer)"), "", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이를 통해 문서에서 머리글 및 바닥글 순서와 관련된 변경 사항을 시각화할 수 있습니다.
텍스트를 필드로 바꾸기
Aspose.Words for Java를 사용하면 텍스트를 필드로 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 필드에 대한 사용자 정의 대체 콜백을 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setReplacingCallback(new ReplaceTextWithFieldHandler(FieldType.FIELD_MERGE_FIELD));
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace(Pattern.compile("PlaceHolder(\\d+)"), "", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예에서 우리는 텍스트를 필드로 바꾸고 필드 유형을 지정합니다(예:FieldType.FIELD_MERGE_FIELD
).
평가자로 교체
사용자 정의 평가기를 사용하여 대체 텍스트를 동적으로 결정할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 사용자 정의 대체 콜백을 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setReplacingCallback(new MyReplaceEvaluator());
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace(Pattern.compile("[s|m]ad"), "", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예에서 우리는 사용자 정의 평가기를 사용합니다.MyReplaceEvaluator
)를 눌러 텍스트를 바꾸세요.
정규 표현식으로 대체
Java용 Aspose.Words를 사용하면 정규 표현식을 사용하여 텍스트를 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 정규 표현식을 사용하여 텍스트를 찾고 바꾸세요
doc.getRange().replace(Pattern.compile("[s|m]ad"), "bad", new FindReplaceOptions());
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예제에서는 정규 표현식 패턴을 사용하여 문서 내에서 텍스트를 찾아 바꿉니다.
교체 패턴 내 인식 및 대체
Aspose.Words for Java를 사용하면 대체 패턴 내에서 대체를 인식하고 만들 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// UseSubstitutions를 true로 설정하여 FindReplaceOptions 인스턴스를 만듭니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setUseSubstitutions(true);
// 텍스트를 패턴으로 바꿀 때 옵션 사용
doc.getRange().replace(Pattern.compile("([A-z]+) give money to ([A-z]+)"), "$2 take money from $1", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이를 통해 보다 진보된 대체를 위한 대체 패턴 내에서 대체를 수행할 수 있습니다.
문자열로 바꾸기
Aspose.Words for Java를 사용하면 텍스트를 간단한 문자열로 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 텍스트를 문자열로 바꾸기
doc.getRange().replace("text-to-replace", "new-string", new FindReplaceOptions());
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이 예에서 우리는 문서 내에서 “text-to-replace"를 “new-string"으로 바꿉니다.
레거시 주문 사용
찾기 및 바꾸기 작업을 수행할 때 레거시 순서를 사용할 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// FindReplaceOptions 인스턴스를 생성하고 UseLegacyOrder를 true로 설정합니다.
FindReplaceOptions options = new FindReplaceOptions();
options.setUseLegacyOrder(true);
// 텍스트를 바꿀 때 옵션 사용
doc.getRange().replace(Pattern.compile("\\[(.*?)\\]"), "", options);
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이렇게 하면 찾기 및 바꾸기 작업에 기존 순서를 사용할 수 있습니다.
테이블의 텍스트 바꾸기
Word 문서에서 표 내의 텍스트를 찾아 바꿀 수 있습니다.
// 문서를 로드합니다
Document doc = new Document("your-document.docx");
// 특정 테이블 가져오기(예: 첫 번째 테이블)
Table table = (Table) doc.getChild(NodeType.TABLE, 0, true);
//FindReplaceOptions를 사용하여 테이블의 텍스트를 바꾸세요
table.getRange().replace("old-text", "new-text", new FindReplaceOptions());
// 수정된 문서를 저장합니다
doc.save("modified-document.docx");
이를 통해 표 내에서만 텍스트를 바꿀 수 있습니다.
결론
Aspose.Words for Java는 Word 문서 내에서 텍스트를 찾고 바꾸기 위한 포괄적인 기능을 제공합니다. 간단한 텍스트 바꾸기를 수행해야 하든 정규 표현식, 필드 조작 또는 사용자 지정 평가자를 사용하여 보다 고급 작업을 수행해야 하든 Aspose.Words for Java가 해결해 드립니다. Aspose에서 제공하는 광범위한 설명서와 예제를 탐색하여 이 강력한 Java 라이브러리의 모든 잠재력을 활용하세요.
자주 묻는 질문
Aspose.Words for Java를 어떻게 다운로드하나요?
웹사이트를 방문하여 Aspose.Words for Java를 다운로드할 수 있습니다.이 링크.
정규 표현식을 사용하여 텍스트를 바꿀 수 있나요?
네, Aspose.Words for Java에서 텍스트 대체에 정규 표현식을 사용할 수 있습니다. 이를 통해 보다 고급스럽고 유연한 찾기 및 바꾸기 작업을 수행할 수 있습니다.
바꾸기 중에 필드 내부의 텍스트를 무시하려면 어떻게 해야 하나요?
바꾸기 중에 필드 내부의 텍스트를 무시하려면 다음을 설정할 수 있습니다.IgnoreFields
의 속성FindReplaceOptions
에게true
이렇게 하면 병합 필드와 같은 필드 내의 텍스트가 바꾸기에서 제외됩니다.
헤더와 푸터 안의 텍스트를 바꿀 수 있나요?
네, Word 문서의 머리글과 바닥글 내부의 텍스트를 바꿀 수 있습니다. 해당 머리글이나 바닥글에 액세스하고 다음을 사용하기만 하면 됩니다.replace
원하는 방법으로FindReplaceOptions
.
UseLegacyOrder 옵션은 무엇을 위한 것인가요?
그만큼UseLegacyOrder
옵션으로FindReplaceOptions
찾기 및 바꾸기 작업을 수행할 때 레거시 순서를 사용할 수 있습니다. 이는 레거시 순서 동작이 필요한 특정 시나리오에서 유용할 수 있습니다.