Looking to utilize JavaScript regex in order to extract all string values from VBA code.
For instance:
If cmd = "History Report" Then
Range("D2").Formula = "=TEXT(""" & createDate & """,""" & Replace(subtitleFormat, """", """""") & """)"
comment = "This task is completed!"
End If
The extracted strings would be:
1> "History Report"
2> "D2"
3> "=TEXT("""
4> ""","""
5> """"
6> """"""
7> """)"
8> "This task is completed!"
Excited to explore new solutions to tackle this challenge.