Jump to content

Regex not proceeded or followed by a -


newbtophp

Recommended Posts

~^(??<!\-)[a-z0-9\-]{2,}(?!\-)|(?<!\-)[a-z0-9\-]+(?!\-)\.(?<!\-)[a-z0-9\-]{2,}(?!\-))$~D

 

I have the above expression, which will match the specified characters (with the specified length) and optionally a fullstop followed by more specified characters (with the specified length).

 

Im trying to make it so it matches only if its not proceeded by a - and not followed by a - .

 

So example the following will match:

 

hey.phpfreaks

hey

yo-u.me

 

However the following will not match:

-hey

hey-

-hey-

you.-he

 

I've tried using (?<!\-) (not proceeded by -) and (?!\-) (not followed by -) but that doesn't seem to work?  :wtf:

Link to comment
https://forums.phpfreaks.com/topic/211805-regex-not-proceeded-or-followed-by-a/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.