scarhand Posted April 6, 2010 Share Posted April 6, 2010 I have 2 textarea's #1 is for TITLES #2 is for SLUGS I have a function which automatically puts the slug for the title in the slug textarea as they are typing via JavaScript. However, I need this regex to ignore line breaks so that the slugs go on new lines like the titles. /[^a-z0-9-]+/g Sorry for cross-posting, but I figure the regex for PHP and JS would be pretty much the same in this case. Quote Link to comment Share on other sites More sharing options...
Psycho Posted April 12, 2010 Share Posted April 12, 2010 http://www.phpfreaks.com/forums/index.php/topic,293768.0.html Quote Link to comment Share on other sites More sharing options...
teamatomic Posted April 27, 2010 Share Posted April 27, 2010 Try: /[^a-z0-9-]+/gm http://php.net/manual/en/reference.pcre.pattern.modifiers.php HTH Teamatomic Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.