×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Help with RegEx to find non alphanumeric characters

Help with RegEx to find non alphanumeric characters

Help with RegEx to find non alphanumeric characters

(OP)
Hi.

I have a table full of names. I am trying to find all names that contain a non alphanumeric character, but I want to exclude spaces, dashes - , and ampersand &.

I am trying this:

CODE

select * from mytable
where name like '%[^a-zA-Z0-9 -&/]%' 

However, I am getting names returned like:
JELD-WEN
GIANT STOP-N-GO OF NEW MEXICO

I would think these names would not be returned because they are no NON alpha numeric characters except for the -.

What am I doing wrong in my script?

Thanks!


RE: Help with RegEx to find non alphanumeric characters

looks like you need to escape the special chars, see :

create table x (col1 varchar(255))
insert into x (col1) values ('test')
insert into x (col1) values ('test-with-dash')
insert into x (col1) values ('test-with£')
insert into x (col1) values ('test_with£')
insert into x (col1) values ('test_with&')
insert into x (col1) values ('test£')
select * from x where col1 like '%[^a-zA-Z0-9!&!-]%' escape '!'

Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
http://www.greggriffiths.org/livelink/

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close