A VBA helper class for regular expressions

Below you can see a helpful class for regular expressions made for Visual Basic for Applications (VBA). First of all an example of usage: Private Sub doREx() Dim v_RExArray As Variant Dim v_REx As String Dim i as Integer v_REx = “\bblog\b)” v_String = “You’re on Steven’s blog because you like Steven’s blog” v_RExArray = … Read more