Odd Regular Expression Issue

Nick1957

New Member
Joined
Jul 23, 2019
Messages
2
Is this some kind of undocumented bug, or am I having brain gas??

Here is the string...

myStr = "<comment id='234679' author='Bill McKale' created='Wed, 14 Jun 2019 11:56:44 -4000'>'This is not a viable solution. Please read SOP 48824.66A'<comment>"

Here are 4 variations of the pattern syntax...

reObj.Pattern = "^<comment id='([0-9]*)' author='(.*)' created='(.*)'>'(.*)'<comment>$"
reObj.Pattern = "^<comment id='([0-9]+)' author='(.*)' created='(.*)'>'(.*)'<comment>$"
reObj.Pattern = "^<comment id='([0-9]{6})' author='(.*)' created='(.*)'>'(.*)'<comment>$"
reObj.Pattern = "^<comment id='([0-9]{5, 7})' author='(.*)' created='(.*)'>'(.*)'<comment>$"

Why does Debug.Print reObj.Test(myStr) return TRUE for all but the last pattern??

FYI I'm using the Microsoft VBScript Regular Expressions 5.5 library.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.

Forum statistics

Threads
1,216,746
Messages
6,132,475
Members
449,729
Latest member
davelevnt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top