Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function SplitOnCapitalization(str As String) As String
Dim RgExp As Object
Set RgExp = CreateObject("VBScript.RegExp")
RgExp.Pattern = "([a-z])([A-Z])"
RgExp.Global = True
SplitOnCapitalization = RgExp.Replace(str, "$1 $2")
End Function