- Code: Select all
Document document = new Document();
document.LoadFromFile(@"E:\Work\Documents\WordDocuments\New Zealand.docx");
document .FindString("perter", true, true);
以下為萬用字元說明
任一字元「?」。
「?」表示的是任何一個字:
輸入「?糬」可以找到「麻糬」、「馬糬」、「A糬」。
我想要是用萬用字元去查找相關字串
請問有範例代碼嗎?