コードがない?でも短くて簡単で綺麗だし… :(
あなたのRegExパターン[^A-Za-z0-9_-]
は、すべてのセル内のすべての特殊文字を削除するために使用されています。
Sub RegExReplace()
Dim RegEx As Object
Set RegEx = CreateObject("VBScript.RegExp")
RegEx.Global = True
RegEx.Pattern = "[^A-Za-z0-9_-]"
For Each objCell In ActiveSheet.UsedRange.Cells
objCell.Value = RegEx.Replace(objCell.Value, "")
Next
End Sub
編集
これがあなたの元の質問に限りなく近いです。
Function RegExCheck(objCell As Range, strPattern As String)
Dim RegEx As Object
Set RegEx = CreateObject("VBScript.RegExp")
RegEx.Global = True
RegEx.Pattern = strPattern
If RegEx.Replace(objCell.Value, "") = objCell.Value Then
RegExCheck = 0
Else
RegExCheck = 1
End If
End Function
2つ目のコードは、2つの引数を持つユーザー定義関数=RegExCheck(A1,"[^A-Za-z0-9_-]")
です。最初の引数はチェックするセルです。2 番目はチェックする RegEx パターンです。
最初にVBAエディタをALT+F11で開き、新しいモジュール(!)を挿入し、以下のコードを貼り付ければ、他の通常のExcelの数式と同じように使用できます。
[] stands for a group of expressions
^ is a logical NOT
[^] Combine them to get a group of signs which should not be included
A-Z matches every character from A to Z (upper case)
a-z matches every character from a to z (lower case)
0-9 matches every digit
_ matches a _
- matches a - (This sign breaks your pattern if it's at the wrong position)
RegEx を初めて利用する方のためにパターンを説明します: [^A-Za-z0-9_-]