本帖最后由 leikaiyi123 于 2018-2-21 18:20 编辑
Sub test11() '在对应答案的选项末尾打勾----题干末尾为括号和答案
With ActiveDocument.Content.Find
.Execute "^l", , , 2, , , , , , "^p", 2 '删软回车(手动换行符)
.Execute "([(\(][A ]@[)\)]^13A[..]*)^13(B[..]*^13C[..]*^13D[..]*)^13", , , 1, , , , , , "\1√^13\2^13", 2
.Execute "([(\(][B ]@[)\)]^13A[..]*^13B[..]*)^13(C[..]*^13D[..]*)^13", , , 1, , , , , , "\1√^13\2^13", 2
.Execute "([(\(][C ]@[)\)]^13A[..]*^13B[..]*^13C[..]*)^13(D[..]*)^13", , , 1, , , , , , "\1√^13\2^13", 2
.Execute "([(\(][D ]@[)\)]^13A[..]*^13B[..]*^13C[..]*^13D[..]*)^13", , , 1, , , , , , "\1√^13", 2
.Execute "([(\(][A-D ]@[)\)]^13)", , , 1, , , , , , "( )^13", 2 '删括号及答案
End With
Selection.Start = Selection.End
End Sub
|