Skip to content

Commit ae20f01

Browse files
committed
Update VBAexpressions.cls
Variable names also support underscores.
1 parent f135388 commit ae20f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VBAexpressions.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2118,7 +2118,7 @@ End Function
21182118
Private Function IsExtAlphaNumeric(ByRef Char As String) As Boolean
21192119
If LenB(Char) Then
21202120
Select Case AscW(Char)
2121-
Case 46, 48 To 57, 65 To 90, 97 To 122
2121+
Case 46, 48 To 57, 65 To 90, 95, 97 To 122
21222122
IsExtAlphaNumeric = True
21232123
Case Else
21242124
IsExtAlphaNumeric = False

0 commit comments

Comments
 (0)