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. However, I need this regex to ignore line breaks so that the slugs go on new lines like the titles. str = str.replace(/[^a-z0-9-]+/g, '-'); Help? Quote Link to comment https://forums.phpfreaks.com/topic/197723-make-this-regex-ignore-line-breaks/ Share on other sites More sharing options...
Psycho Posted April 6, 2010 Share Posted April 6, 2010 str = str.replace(/[^a-z0-9-\n\r]+/g, '-'); Quote Link to comment https://forums.phpfreaks.com/topic/197723-make-this-regex-ignore-line-breaks/#findComment-1037807 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.