在 Android 上於 PowerPoint 簡報中搜尋與取代文字
概述
Aspose.Slides for Android via Java 可以在單一文字框或整個簡報中搜尋、標記及取代文字。每個操作也能透過結果回呼通知應用程式每一次匹配。這使得在更新簡報的同時,能同時建立包含匹配文字、其上下文、位置、文字框與投影片編號的稽核追蹤。
這些功能對於審閱、刪除、術語檢查、範本清理以及自動化報告工作流程非常有用。
在以下的第一個範例中,我們使用名為「sample.pptx」的檔案,其中第一張投影片上有一個單一文字方塊,文字如下:

選擇搜尋範圍
使用ITextFrame上的方法將操作限制於單一文字框。使用IPresentation上的方法處理簡報中所有適用的文字。
| 操作 | 單一文字框 | 整個簡報 |
|---|---|---|
| 突顯字面文字 | ITextFrame.highlightText | IPresentation.highlightText |
| 突顯正規表達式匹配 | ITextFrame.highlightRegex | IPresentation.highlightRegex |
| 取代字面文字 | ITextFrame.replaceText | IPresentation.replaceText |
| 取代正規表達式匹配 | ITextFrame.replaceRegex | IPresentation.replaceRegex |
設定文字匹配
對於字面文字操作,使用TextSearchOptions來控制匹配方式:
- TextSearchOptions.setWholeWordsOnly 限制匹配僅完整單字。
- TextSearchOptions.setCaseSensitive 控制是否必須匹配字元大小寫。
- TextSearchOptions.setIncludeNotes 在簡報層級的搜尋、取代與突顯操作中,包含投影片備註。
正規表達式操作使用 Java Pattern,因此匹配規則(例如大小寫敏感度與單詞邊界)由表達式及其旗標定義。
辨識文字框的擁有者
一般的文字處理工作流程在搜尋、取代、驗證或匯出文字時,常會收到一個ITextFrame。使用ITextFrame.getParentShape和ITextFrame.getParentCell即可判斷是哪個簡報物件擁有此文字框。
預期的回傳值取決於擁有者:
| 文字框擁有者 | getParentShape |
getParentCell |
|---|---|---|
| AutoShape 或其他含文字的圖形 | 擁有的IShape | null |
| 表格儲存格 | null |
擁有的ICell |
兩個方法皆提供唯讀導覽。呼叫它們不會移動文字框或變更其擁有者。通用程式碼應同時檢查兩個值是否為null,並處理兩者皆不可用的情況。
以下範例使用SlideUtil.getAllTextFrames遍歷簡報中的所有文字框。對於圖形,會回報圖形名稱、Java 執行時類型與所屬投影片;對於表格儲存格,則回報零基礎的欄位與列座標以及所屬投影片。
import com.aspose.slides.*;
Presentation presentation = new Presentation("presentation.pptx");
try {
ITextFrame[] textFrames = SlideUtil.getAllTextFrames(presentation, false);
for (ITextFrame textFrame : textFrames) {
IShape ownerShape = textFrame.getParentShape();
if (ownerShape != null) {
String shapeName = ownerShape.getName().isEmpty() ? "(unnamed)" : ownerShape.getName();
String shapeType = ownerShape.getClass().getSimpleName();
IBaseSlide baseSlide = ownerShape.getSlide();
String slideLabel;
if (baseSlide instanceof ISlide) {
slideLabel = "slide " + ((ISlide) baseSlide).getSlideNumber();
} else if (baseSlide instanceof INotesSlide) {
slideLabel = "notes for slide " + ((INotesSlide) baseSlide).getParentSlide().getSlideNumber();
} else {
slideLabel = baseSlide.getClass().getSimpleName();
}
System.out.println("Shape: " + shapeName + "; type: " + shapeType + "; " + slideLabel);
continue;
}
ICell ownerCell = textFrame.getParentCell();
if (ownerCell != null) {
IBaseSlide baseSlide = ownerCell.getSlide();
String slideLabel;
if (baseSlide instanceof ISlide) {
slideLabel = "slide " + ((ISlide) baseSlide).getSlideNumber();
} else if (baseSlide instanceof INotesSlide) {
slideLabel = "notes for slide " + ((INotesSlide) baseSlide).getParentSlide().getSlideNumber();
} else {
slideLabel = baseSlide.getClass().getSimpleName();
}
System.out.println("Table cell: column " + ownerCell.getFirstColumnIndex() + ", row " + ownerCell.getFirstRowIndex() + "; " + slideLabel);
continue;
}
System.out.println("The text frame owner is not available as a shape or table cell.");
}
} finally {
presentation.dispose();
}
對於 SmartArt 內容,遍歷ISmartArtNode.getShapes中的圖形,並存取每個ISmartArtShape.getTextFrame。文字框可透過ITextFrame.getParentShape追溯到其關聯的圖形,而ITextFrame.getParentCell則回傳null。因此範例中的圖形分支也同時處理 SmartArt 節點的文字。
使用回呼收集匹配資訊
實作IFindResultCallback以在每次匹配時收到通知。其IFindResultCallback.foundResult方法會提供相關的文字框、來源文字、匹配文字與匹配位置。
回呼不會直接接收投影片編號。下方實作會從父投影片推導編號,並同時處理備註投影片中的文字。可為 Integer 設為可為 null,以允許相同的結果模型表示屬於其他投影片類型的文字。
import com.aspose.slides.*;
import java.util.ArrayList;
import java.util.List;
final class TextMatch {
private final ITextFrame textFrame;
private final String sourceText;
private final String foundText;
private final int textPosition;
private final Integer slideNumber;
TextMatch(ITextFrame textFrame, String sourceText, String foundText, int textPosition, Integer slideNumber) {
this.textFrame = textFrame;
this.sourceText = sourceText;
this.foundText = foundText;
this.textPosition = textPosition;
this.slideNumber = slideNumber;
}
ITextFrame getTextFrame() {
return textFrame;
}
String getSourceText() {
return sourceText;
}
String getFoundText() {
return foundText;
}
int getTextPosition() {
return textPosition;
}
Integer getSlideNumber() {
return slideNumber;
}
}
final class TextSearchCallback implements IFindResultCallback {
private final List<TextMatch> results = new ArrayList<TextMatch>();
List<TextMatch> getResults() {
return results;
}
@Override
public void foundResult(ITextFrame textFrame, String sourceText, String foundText, int textPosition) {
Integer slideNumber = getSlideNumber(textFrame);
TextMatch result = new TextMatch(textFrame, sourceText, foundText, textPosition, slideNumber);
results.add(result);
}
private Integer getSlideNumber(ITextFrame textFrame) {
IShape parentShape = textFrame.getParentShape();
ICell parentCell = textFrame.getParentCell();
IBaseSlide parentSlide = parentShape != null ? parentShape.getSlide() : parentCell != null ? parentCell.getSlide() : textFrame.getSlide();
if (parentSlide instanceof ISlide) {
return ((ISlide) parentSlide).getSlideNumber();
}
if (parentSlide instanceof INotesSlide) {
return ((INotesSlide) parentSlide).getParentSlide().getSlideNumber();
}
return null;
}
}
對於取代操作,foundText 包含原始匹配文字,回呼因此能記錄哪個詞彙被取代。
突顯文字
使用ITextFrame.highlightText方法在文字框中突顯字面文字匹配。傳入[TextSearchOptions]以控制搜尋,並提供回呼以收集匹配細節。
下方程式碼示範先突顯所有 「try」 字元,再僅突顯完整單字 「to」。兩次搜尋皆將匹配結果回報給同一個回呼。
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation("sample.pptx");
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = (IAutoShape) slide.getShapes().get_Item(0);
TextSearchCallback callback = new TextSearchCallback();
TextSearchOptions substringSearchOptions = new TextSearchOptions();
substringSearchOptions.setCaseSensitive(false);
int substringHighlightColor = Color.rgb(173, 216, 230);
// 在文字框中突顯所有出現的「try」字串。
shape.getTextFrame().highlightText("try", substringHighlightColor, substringSearchOptions, callback);
TextSearchOptions wholeWordSearchOptions = new TextSearchOptions();
wholeWordSearchOptions.setWholeWordsOnly(true);
wholeWordSearchOptions.setCaseSensitive(false);
int wholeWordHighlightColor = Color.rgb(238, 130, 238);
// 僅突顯完整單字「to」。
shape.getTextFrame().highlightText("to", wholeWordHighlightColor, wholeWordSearchOptions, callback);
for (TextMatch result : callback.getResults()) {
System.out.println("Found '" + result.getFoundText() + "' at position " +
result.getTextPosition() + " on slide " + result.getSlideNumber() + ".");
}
presentation.save("highlighted_text.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
結果:

使用正規表達式突顯文字
ITextFrame.highlightRegex 方法可在文字框中突顯符合正規表達式的文字匹配。
以下程式碼突顯所有包含七個以上字元的單字,並收集每一次匹配:
import com.aspose.slides.*;
import android.graphics.Color;
import java.util.regex.Pattern;
Presentation presentation = new Presentation("sample.pptx");
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = (IAutoShape) slide.getShapes().get_Item(0);
TextSearchCallback callback = new TextSearchCallback();
Pattern regex = Pattern.compile("\\b[^\\s]{7,}\\b");
shape.getTextFrame().highlightRegex(regex, Color.YELLOW, callback);
presentation.save("highlighted_text_using_regex.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
結果:

跨簡報突顯文字
使用IPresentation.highlightText與IPresentation.highlightRegex,可搜尋簡報中所有適用的文字框。以下範例同時突顯一個字面詞彙與所有電子郵件地址,且為兩個搜尋分別保留獨立的結果集合。
import com.aspose.slides.*;
import android.graphics.Color;
import java.util.regex.Pattern;
Presentation presentation = new Presentation("presentation.pptx");
try {
TextSearchCallback termCallback = new TextSearchCallback();
TextSearchOptions searchOptions = new TextSearchOptions();
searchOptions.setWholeWordsOnly(true);
searchOptions.setCaseSensitive(false);
int termHighlightColor = Color.rgb(255, 165, 0);
presentation.highlightText("confidential", termHighlightColor, searchOptions, termCallback);
TextSearchCallback emailCallback = new TextSearchCallback();
Pattern emailRegex = Pattern.compile(
"\\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}\\b",
Pattern.CASE_INSENSITIVE);
presentation.highlightRegex(emailRegex, Color.YELLOW, emailCallback);
presentation.save("highlighted_presentation.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
在文字框中取代文字
使用ITextFrame.replaceText處理字面文字,使用ITextFrame.replaceRegex處理模式取代。這些方法直接在現有文字框內更新匹配文字,保留周圍部份的格式,而非以純文字重新建構文字框。
以下範例先統一一種拼寫變體,然後取代版本標籤。同一個回呼會記錄兩個操作匹配到的原始詞彙。
import com.aspose.slides.*;
import java.util.regex.Pattern;
Presentation presentation = new Presentation("presentation.pptx");
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = (IAutoShape) slide.getShapes().get_Item(0);
TextSearchCallback callback = new TextSearchCallback();
TextSearchOptions searchOptions = new TextSearchOptions();
searchOptions.setWholeWordsOnly(true);
searchOptions.setCaseSensitive(false);
shape.getTextFrame().replaceText("colour", "color", searchOptions, callback);
Pattern versionRegex = Pattern.compile("\\bv\\d+(?:\\.\\d+)*\\b", Pattern.CASE_INSENSITIVE);
shape.getTextFrame().replaceRegex(versionRegex, "current version", callback);
presentation.save("updated_text_frame.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
如果一次匹配跨越了格式不同的區段,請檢查輸出以確認替換文字應使用哪種格式。
跨簡報取代文字
使用IPresentation.replaceText與IPresentation.replaceRegex在整個簡報中執行相同的操作。此功能適用於範本清理、術語更新與刪除。
import com.aspose.slides.*;
import java.util.regex.Pattern;
Presentation presentation = new Presentation("presentation.pptx");
try {
TextSearchCallback callback = new TextSearchCallback();
TextSearchOptions searchOptions = new TextSearchOptions();
searchOptions.setWholeWordsOnly(true);
searchOptions.setCaseSensitive(true);
presentation.replaceText("Contoso", "Example Corp", searchOptions, callback);
Pattern accountNumberRegex = Pattern.compile("\\bACCT-\\d{6}\\b");
presentation.replaceRegex(accountNumberRegex, "ACCT-REDACTED", callback);
presentation.save("updated_presentation.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
將匹配結果分組以產生報告
因為每個結果皆保存了投影片編號與文字框,應用程式可以依據這些資訊將匹配結果分組,以供稽核、報告或審閱工作流程使用。以下範例先依投影片分組,然後再依文字框分組。
import com.aspose.slides.ITextFrame;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
Map<Integer, Map<ITextFrame, List<TextMatch>>> matchesBySlide =
new LinkedHashMap<Integer, Map<ITextFrame, List<TextMatch>>>();
for (TextMatch result : callback.getResults()) {
Integer slideNumber = result.getSlideNumber();
Map<ITextFrame, List<TextMatch>> matchesByTextFrame = matchesBySlide.get(slideNumber);
if (matchesByTextFrame == null) {
matchesByTextFrame = new LinkedHashMap<ITextFrame, List<TextMatch>>();
matchesBySlide.put(slideNumber, matchesByTextFrame);
}
ITextFrame textFrame = result.getTextFrame();
List<TextMatch> textFrameMatches = matchesByTextFrame.get(textFrame);
if (textFrameMatches == null) {
textFrameMatches = new java.util.ArrayList<TextMatch>();
matchesByTextFrame.put(textFrame, textFrameMatches);
}
textFrameMatches.add(result);
}
for (Map.Entry<Integer, Map<ITextFrame, List<TextMatch>>> slideEntry : matchesBySlide.entrySet()) {
String slideLabel = slideEntry.getKey() == null ? "Other" : slideEntry.getKey().toString();
System.out.println("Slide: " + slideLabel);
for (Map.Entry<ITextFrame, List<TextMatch>> textFrameEntry : slideEntry.getValue().entrySet()) {
System.out.println(" Text frame: " + textFrameEntry.getKey().getText());
for (TextMatch result : textFrameEntry.getValue()) {
System.out.println(" '" + result.getFoundText() + "' at position " +
result.getTextPosition() + "; context: '" + result.getSourceText() + "'");
}
}
}
FAQ
如何只搜尋單一文字方塊而非整個簡報?
取得圖形的文字框,然後在該文字框上呼叫ITextFrame.highlightText、ITextFrame.highlightRegex、ITextFrame.replaceText、或ITextFrame.replaceRegex。簡報層級的方法則會處理所有適用的文字框。
如何以正確的大小寫匹配完整單字?
將TextSearchOptions.setWholeWordsOnly與TextSearchOptions.setCaseSensitive設為true,並將此選項傳遞給字面文字的突顯或取代方法。對於正規表達式,請在 Java Pattern 本身定義單詞邊界與大小寫敏感度。
搜尋與取代可以包括投影片備註中的文字嗎?
可以。於簡報層級的字面文字操作時,將TextSearchOptions.setIncludeNotes設為true。上方示範的回呼實作會將備註投影片中的匹配映射回其父投影片編號。
如何在不重新掃描簡報的情況下建立報告?
將IFindResultCallback的實作傳入突顯或取代操作。回呼會在操作執行時即時接收每一次匹配,讓應用程式能儲存來源文字、匹配文字、位置、文字框與推導出的投影片編號,以便之後分組或匯出。
取代文字會保留其格式嗎?
ITextFrame.replaceText與ITextFrame.replaceRegex會在既有文字框內修改匹配文字,並保留周圍部份的格式。如果一次匹配跨越了格式不同的區段,請檢查結果以確保替換文字使用期望的樣式。