Regular Expresions

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
1,835
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
I'm trying to understand this pattern

RE.Pattern = "^[A-Z|b]?\d+\. .*:[0-5]\d$"

Is the following correct and could you tell me what \. . means ?

^ Start
[A-Z|b] Any char "A-Z" or "b"
? all before zero Or one times
\d+ Matches a single digit one or more
\. . ????
*:[0-5] Anything before a colon followed by numbers 0-5

\d Matches a single digit (Does this mean 2 digits in total after the colon)
$ End

Thanks
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
\. means a period

. means any character except newline

.* means 0 or more of those

So \..* means a period followed by zero or more anything-but-newline characters
 
Upvote 0
Thanks. Is the space between the two "." significant ?
 
Upvote 0
Yes; it means a space character.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,397
Members
448,957
Latest member
Hat4Life

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