"Word VBA/利阿賀拿" 修訂間的差異

出自 青少年追求卓越
前往: 導覽搜尋
(已匯入 1 筆修訂)
行 13: 行 13:
 
     Dim response As Integer
 
     Dim response As Integer
 
      
 
      
     Set myDoc = ThisDocument
+
     Set myDoc = Documents("文件1")
    Set newDoc = Documents.Add
+
'    Set newDoc = Documents.Add
 
      
 
      
     For Each char In myDoc.Characters
+
     For Each para In myDoc.Paragraphs
        newDoc.Content.InsertAfter Text:=char
+
'        newDoc.Content.InsertAfter Text:=word
'        response = MsgBox(char, vbOKCancel)
+
        response = MsgBox(para, vbOKCancel)
'        If response = vbCancel Then Exit For
+
        If response = vbCancel Then Exit For
 
     Next
 
     Next
  
 
End Sub
 
End Sub
Sub testCopyByWords()
+
Sub convertChineseToWiki()
' 用 word (詞) 為單位複製文件,統計數字顯示有短少的限象
 
 
     Dim myDoc As Document
 
     Dim myDoc As Document
 
     Dim newDoc As Document
 
     Dim newDoc As Document
行 31: 行 30:
 
     Dim word As Variant
 
     Dim word As Variant
 
     Dim para As Variant
 
     Dim para As Variant
 +
   
 +
    Dim periodFound As Boolean
 +
'    Dim openDoubleQuoteFound As Boolean    '發現第一個雙引號
 +
 +
    Dim charSaved As String
 
      
 
      
 
     Dim response As Integer
 
     Dim response As Integer
 +
    Dim cntLink As Integer
 +
    Dim i As Integer
 
      
 
      
 
     Set myDoc = ThisDocument
 
     Set myDoc = ThisDocument
 
     Set newDoc = Documents.Add
 
     Set newDoc = Documents.Add
 
      
 
      
     For Each word In myDoc.Words
+
     cntLink = myDoc.Hyperlinks.Count
         newDoc.Content.InsertAfter Text:=word
+
   
'        response = MsgBox(word, vbOKCancel)
+
    For i = cntLink To 1 Step -1
'        If response = vbCancel Then Exit For
+
         myDoc.Hyperlinks(i).Range.Delete
 
     Next
 
     Next
 +
   
 +
    charSaved = ""
 +
    periodFound = False
 +
'    openDoubleQuoteFound = False
 +
    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
 +
   
 +
    For Each char In myDoc.Characters
 +
  
End Sub
+
        Select Case char
 +
            Case vbCr, vbLf, Chr(11)                        '分行符號
 +
 
 +
                If periodFound Then
 +
                    newDoc.Content.InsertAfter Text:=charSaved
 +
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
 +
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
 +
                    periodFound = False
 +
                End If
 +
            Case "。", ".", "!", "!", "?", "?", ";"      '斷句符號
 +
                charSaved = char                            '斷句符號暫存
 +
                periodFound = True
  
Sub testCopyByParagraphs()
+
            Case "」", "』", ")", Chr(41384)               '右引號
' 用 paragraph (段) 為單位複製文件,統計數字顯示完整抄錄
+
                If periodFound Then
    Dim myDoc As Document
+
                    newDoc.Content.InsertAfter Text:=charSaved
    Dim newDoc As Document
+
                    newDoc.Content.InsertAfter Text:=char & "</p>" & vbCrLf & vbCrLf
   
+
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
    Dim char As Variant
+
                    periodFound = False
    Dim word As Variant
+
                Else
   
+
                    newDoc.Content.InsertAfter Text:=char
    Dim para As Variant
+
                End If
   
+
            Case Else                                      '其它文字或符號
    Dim response As Integer
+
                If periodFound Then
   
+
                    newDoc.Content.InsertAfter Text:=charSaved
    Set myDoc = ThisDocument
+
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
    Set newDoc = Documents.Add
+
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
 +
                    newDoc.Content.InsertAfter Text:=char
 +
                    periodFound = False
 +
                Else
 +
                    newDoc.Content.InsertAfter Text:=char
 +
                End If
 +
        End Select
 
      
 
      
    For Each para In myDoc.Paragraphs
 
        ' 若宣告 para 為 Paragraph,下行指令執行時會發生錯誤
 
        newDoc.Content.InsertAfter Text:=para
 
'        response = MsgBox(para, vbOKCancel)
 
'        If response = vbCancel Then Exit For
 
 
     Next
 
     Next
  
 
End Sub
 
End Sub
 
+
Sub convertEnglishToWiki()
Sub convertToWiki()
 
 
     Dim myDoc As Document
 
     Dim myDoc As Document
 
     Dim newDoc As Document
 
     Dim newDoc As Document
行 78: 行 103:
 
      
 
      
 
     Dim periodFound As Boolean
 
     Dim periodFound As Boolean
 +
'    Dim openDoubleQuoteFound As Boolean    '發現第一個雙引號
 +
 
     Dim charSaved As String
 
     Dim charSaved As String
 
      
 
      
 
     Dim response As Integer
 
     Dim response As Integer
 +
    Dim cntLink As Integer
 +
    Dim i As Integer
 
      
 
      
 
     Set myDoc = ThisDocument
 
     Set myDoc = ThisDocument
 
     Set newDoc = Documents.Add
 
     Set newDoc = Documents.Add
 +
   
 +
    cntLink = myDoc.Hyperlinks.Count
 +
   
 +
    For i = cntLink To 1 Step -1
 +
        myDoc.Hyperlinks(i).Range.Delete
 +
    Next
 
      
 
      
 
     charSaved = ""
 
     charSaved = ""
 
     periodFound = False
 
     periodFound = False
     newDoc.Content.InsertAfter Text:="<p class='chinese'>"
+
'    openDoubleQuoteFound = False
 +
     newDoc.Content.InsertAfter Text:="<p class='english'>"
 
      
 
      
 
     For Each char In myDoc.Characters
 
     For Each char In myDoc.Characters
   
+
 
   
 
  
 
         Select Case char
 
         Select Case char
             Case vbCr, vbLf, Chr(11)
+
             Case vbCr, vbLf, Chr(11)                       '分行符號
             Case "。", ".", "!", "!", "?", "?", ";"
+
 
                 charSaved = char
+
                If periodFound Then
 +
                    newDoc.Content.InsertAfter Text:=charSaved
 +
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
 +
                    newDoc.Content.InsertAfter Text:="<p class='english'>"
 +
                    periodFound = False
 +
                End If
 +
             Case "。", ".", "!", "!", "?", "?", ";"     '斷句符號
 +
                 charSaved = char                           '斷句符號暫存
 
                 periodFound = True
 
                 periodFound = True
             Case "」", "』", ")"
+
 
 +
             Case "」", "』", ")", Chr(41384)                '右引號
 
                 If periodFound Then
 
                 If periodFound Then
 
                     newDoc.Content.InsertAfter Text:=charSaved
 
                     newDoc.Content.InsertAfter Text:=charSaved
 
                     newDoc.Content.InsertAfter Text:=char & "</p>" & vbCrLf & vbCrLf
 
                     newDoc.Content.InsertAfter Text:=char & "</p>" & vbCrLf & vbCrLf
                     newDoc.Content.InsertAfter Text:="<p class='chinese'>"
+
                     newDoc.Content.InsertAfter Text:="<p class='english'>"
 
                     periodFound = False
 
                     periodFound = False
 +
                Else
 +
                    newDoc.Content.InsertAfter Text:=char
 
                 End If
 
                 End If
             Case Else
+
             Case Else                                       '其它文字或符號
 
                 If periodFound Then
 
                 If periodFound Then
 
                     newDoc.Content.InsertAfter Text:=charSaved
 
                     newDoc.Content.InsertAfter Text:=charSaved
 
                     newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
 
                     newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
                     newDoc.Content.InsertAfter Text:="<p class='chinese'>"
+
                     newDoc.Content.InsertAfter Text:="<p class='english'>"
 
                     newDoc.Content.InsertAfter Text:=char
 
                     newDoc.Content.InsertAfter Text:=char
 
                     periodFound = False
 
                     periodFound = False
行 118: 行 163:
 
      
 
      
 
     Next
 
     Next
 +
  
 
End Sub
 
End Sub
 +
 
</pre>
 
</pre>
  

於 2018年4月18日 (三) 05:09 的修訂

Option Explicit

Sub testCopyByCharacters()
' 用 character (字) 為單位複製文件,統計數字顯示完整抄錄
    Dim myDoc As Document
    Dim newDoc As Document
    
    Dim char As Variant
    Dim word As Variant
    Dim para As Variant
    
    Dim response As Integer
    
    Set myDoc = Documents("文件1")
'    Set newDoc = Documents.Add
    
    For Each para In myDoc.Paragraphs
'        newDoc.Content.InsertAfter Text:=word
        response = MsgBox(para, vbOKCancel)
        If response = vbCancel Then Exit For
    Next

End Sub
Sub convertChineseToWiki()
    Dim myDoc As Document
    Dim newDoc As Document
    
    Dim char As Variant
    Dim word As Variant
    Dim para As Variant
    
    Dim periodFound As Boolean
'    Dim openDoubleQuoteFound As Boolean     '發現第一個雙引號

    Dim charSaved As String
    
    Dim response As Integer
    Dim cntLink As Integer
    Dim i As Integer
    
    Set myDoc = ThisDocument
    Set newDoc = Documents.Add
    
    cntLink = myDoc.Hyperlinks.Count
    
    For i = cntLink To 1 Step -1
        myDoc.Hyperlinks(i).Range.Delete
    Next
    
    charSaved = ""
    periodFound = False
'    openDoubleQuoteFound = False
    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
    
    For Each char In myDoc.Characters


        Select Case char
            Case vbCr, vbLf, Chr(11)                        '分行符號

                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
                    periodFound = False
                End If
            Case "。", ".", "!", "!", "?", "?", ";"      '斷句符號
                charSaved = char                            '斷句符號暫存
                periodFound = True

            Case "」", "』", ")", Chr(41384)                '右引號
                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:=char & "</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
                    periodFound = False
                Else
                    newDoc.Content.InsertAfter Text:=char
                End If
            Case Else                                       '其它文字或符號
                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='chinese'>"
                    newDoc.Content.InsertAfter Text:=char
                    periodFound = False
                Else
                    newDoc.Content.InsertAfter Text:=char
                End If
        End Select
    
    Next

End Sub
Sub convertEnglishToWiki()
    Dim myDoc As Document
    Dim newDoc As Document
    
    Dim char As Variant
    Dim word As Variant
    Dim para As Variant
    
    Dim periodFound As Boolean
'    Dim openDoubleQuoteFound As Boolean     '發現第一個雙引號

    Dim charSaved As String
    
    Dim response As Integer
    Dim cntLink As Integer
    Dim i As Integer
    
    Set myDoc = ThisDocument
    Set newDoc = Documents.Add
    
    cntLink = myDoc.Hyperlinks.Count
    
    For i = cntLink To 1 Step -1
        myDoc.Hyperlinks(i).Range.Delete
    Next
    
    charSaved = ""
    periodFound = False
'    openDoubleQuoteFound = False
    newDoc.Content.InsertAfter Text:="<p class='english'>"
    
    For Each char In myDoc.Characters


        Select Case char
            Case vbCr, vbLf, Chr(11)                        '分行符號

                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='english'>"
                    periodFound = False
                End If
            Case "。", ".", "!", "!", "?", "?", ";"      '斷句符號
                charSaved = char                            '斷句符號暫存
                periodFound = True

            Case "」", "』", ")", Chr(41384)                '右引號
                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:=char & "</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='english'>"
                    periodFound = False
                Else
                    newDoc.Content.InsertAfter Text:=char
                End If
            Case Else                                       '其它文字或符號
                If periodFound Then
                    newDoc.Content.InsertAfter Text:=charSaved
                    newDoc.Content.InsertAfter Text:="</p>" & vbCrLf & vbCrLf
                    newDoc.Content.InsertAfter Text:="<p class='english'>"
                    newDoc.Content.InsertAfter Text:=char
                    periodFound = False
                Else
                    newDoc.Content.InsertAfter Text:=char
                End If
        End Select
    
    Next


End Sub