Jump to content

preg_match help to allow enter in textarea box


CBG

Recommended Posts

Hi,

 

I currently have the below code to check the textarea box.

 

if (preg_match("#^[a-zA-Z0-9 .,?_/'!£$%&*()+=-]+$#", $msgs)) {
	// Everything ok. Do nothing and continue
} else {
	echo "Message is not in correct format.<br>You can use a-z A-Z 0-9 . , ? _ / ' ! £ $ % * () + = - Only";

 

However the problem is, when putting enter in the message if fails

For example if I put the message

 

this

message

doesnt

work

 

It fails and echo the else

 

But if I put

this message does work

 

It is ok

 

 

Could someone tell me what extra bit of code I need to add to the preg_match and where.

 

Thanks for the help :)

Link to comment
Share on other sites

Ah. I didn't look to much at the regex before, but you need to escape special characters to use them as literals, and since you're not using the dot to match any character (instead as a literal), you also need new line / return characters in your regex, instead of the 's' modifier. Try this:

 

#^[a-zA-Z0-9 \.,\?_/'!£\$%&*()+=\r\n-]+$#

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.