regex - Excel 正则表达式宏将在一列中搜索匹配项,并将所有匹配项的整行粘贴到另一个工作表中

标签 regex vba excel

我需要能够在 Excel 宏中使用正则表达式来搜索特定列,然后将包含匹配项的所有行复制并粘贴到新工作表中。

我找到了一个脚本,可以搜索列并将匹配结果粘贴到新工作表中,但我不确定如何使用正则表达式而不是单个字符串来修改它。

我正在考虑使用这个宏进行搜索,但我需要将术语“邮箱”修改为正则表达式术语/对象,但我不确定如何集成它。

Sub SearchForString()

   Dim LSearchRow As Integer
   Dim LCopyToRow As Integer

   On Error GoTo Err_Execute

   'Start search in row 4
   LSearchRow = 4

   'Start copying data to row 2 in Sheet2 (row counter variable)
   LCopyToRow = 2

   While Len(Range("A" & CStr(LSearchRow)).Value) > 0

      'If value in column E = "Mail Box", copy entire row to Sheet2
      If Range("E" & CStr(LSearchRow)).Value = "Mail Box" Then

         'Select row in Sheet1 to copy
         Rows(CStr(LSearchRow) & ":" & CStr(LSearchRow)).Select
         Selection.Copy

         'Paste row into Sheet2 in next row
         Sheets("Sheet2").Select
         Rows(CStr(LCopyToRow) & ":" & CStr(LCopyToRow)).Select
         ActiveSheet.Paste

         'Move counter to next row
         LCopyToRow = LCopyToRow + 1

         'Go back to Sheet1 to continue searching
         Sheets("Sheet1").Select

      End If

      LSearchRow = LSearchRow + 1

   Wend

   'Position on cell A3
   Application.CutCopyMode = False
   Range("A3").Select

   MsgBox "All matching data has been copied."

   Exit Sub

Err_Execute:
   MsgBox "An error occurred."

End Sub

最佳答案

Sub SearchForString()

    Dim RE As Object
    Dim LSearchRow As Long
    Dim LCopyToRow As Long

    On Error GoTo Err_Execute

    Set RE = CreateObject("vbscript.regexp")
    RE.Pattern = "(red|blue)"
    RE.Ignorecase = True

    LSearchRow = 4 'Start search in row 4
    LCopyToRow = 2 'Start copying data to row 2 in Sheet2 (row counter variable)

    While Len(Cells(LSearchRow, "A").Value) > 0

     If RE.Test(Cells(LSearchRow, "E").Value) Then
         ActiveSheet.Rows(LSearchRow).Copy Sheets("Sheet2").Rows(LCopyToRow)
         LCopyToRow = LCopyToRow + 1 'Move counter to next row
     End If

     LSearchRow = LSearchRow + 1

    Wend

    Range("A3").Select 'Position on cell A3
    MsgBox "All matching data has been copied."

    Exit Sub

Err_Execute:
    MsgBox "An error occurred."

End Sub

关于regex - Excel 正则表达式宏将在一列中搜索匹配项,并将所有匹配项的整行粘贴到另一个工作表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18796382/

相关文章:

python - 如何在django中编写re_path url来读取特殊字符?

vba - 将字符串参数放入范围 - VBA

postgresql - vba 和 postgresql 连接

php - 有没有办法移动/重置 preg_match_all() 中的搜索指针?

c# - 部分文本搜索的快速算法

css - 修改此 CSS 掩码方法以允许用户仅输入 -9999999 到 9999999 之间的值

excel - VBA Excel : How can I store a real number but display a rounded number in a textbox?

c# - 一段时间后 ContextMenu Excel 365 操作丢失 c#

excel用$返回工作表名

javascript - 通过VBA提取隐藏在页面源代码中的javascript表