Tagged Questions
0
votes
0answers
197 views
What regex can I pass to this vba function to mimic markdown syntax? [closed]
I'm working on trying to get regex to mimick the markdown syntax (perl) within the confines of vba.
Here is the function I found to perform regex:
'public function markdown_vb(MDstring as string) as ...
1
vote
3answers
513 views
excel vba - multiline regex not working
In cell A1 of an excel sheet I have the following contents inside the cell:
select a.id, b.type, c.name
from blah a,
blah2 b,
blah3 c
where a.id = b.key
and b.key = c.id
;
Either of the below ...
2
votes
1answer
842 views
Why does my regular expressions invoke error '5018' in my VBA script in Excel
I just wrote my first VBA script for Excel because I have to write many "*.txt" files from a folder into an excel spreadsheet. But when I run this script, I get the error '5018'. It is invoked by the ...