我正在做 Word Automation,想选择 Word 中每个新段落的每个第一个字符。使用我的代码,我只能选择第一段的第一个字符,而不能选择其他任何字符。谁能告诉我哪里出错了?
foreach (Word.Paragraph aPar in oWordDoc.Paragraphs) {
Word.Range parRng = aPar.Range;
string sText = parRng.Text;
object startLocation5 = 2;
object endLocation5 = 3;
rng5 = oWordDoc.Range(ref startLocation5, ref endLocation5);
rng5.Text = rng5.Text;
}
这是我的文件:
馏分(甘露聚糖和木聚糖)酶水解。结晶纤维素的酶水解 – 裂解为可发酵的 D – 葡萄糖 [71,74–79]。
半乳糖(葡糖)甘露聚糖的酶水解,特别是存在于软木中,是通过 endo-b-1,4-甘露聚糖酶的作用完成的,该酶随机切割
我想选择“f”,然后选择“T”(第二段的第一个字符)。