How to add the hyphen-minus into the pattern?

Fixed

Board Regular
Joined
Apr 28, 2017
Messages
95
Hello!

I need to add "-" ("hyphen-minus") into the:
Code:
Pattern = "[!A-Za-z0-9]"
Thanks in advance!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
I've tried:
Code:
Pattern = "[!A-Za-z0-9-]"
and looks like it works)
Correct... because the hyphen is used to specify ranges, the only safe place to put it when you want it to just be a hyphen is at the end of the text (inside the square brackets) where it won't be able to form a range. Theoretically, you can also place it at the beginning of the text, but after the leading exclamation mark if there is one, but I find it easier to keep track of when it is at the end, especially when I have to come back at a later time and add some more characters inside the square brackets.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,260
Members
452,627
Latest member
KitkatToby

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