Using [0-9]

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
1,835
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
I think I'm getting confused with LIKE and Regular Expressions.
MyString contains a backslash followed by any 4 digits.
Code:
if MyString LIKE  "\" & "[0-9]"  then...
is failing.
I can think of many ways to resolve this but keen to know where I'm going wrong.

Thanks.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
I think I'm getting confused with LIKE and Regular Expressions.
MyString contains a backslash followed by any 4 digits.
Code:
if MyString LIKE  "\" & "[0-9]"  then...
is failing.
I can think of many ways to resolve this but keen to know where I'm going wrong.
Assuming there might be other text besides the backslash and four digits, try that line of code this way...

If MyString Like "*\####*" Then...
 
Upvote 0
Thanks Rick, never knew you could use a hash char that way. Can't fault it.
And on further thinking I don't need "*" so Like "\####" tests okay too.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,537
Members
449,088
Latest member
RandomExceller01

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