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. Link to comment https://forums.phpfreaks.com/topic/197724-make-this-regex-ignore-line-breaks/ 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 Link to comment https://forums.phpfreaks.com/topic/197724-make-this-regex-ignore-line-breaks/#findComment-1040359 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 Link to comment https://forums.phpfreaks.com/topic/197724-make-this-regex-ignore-line-breaks/#findComment-1049111 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.