ereg allow space? Simple for those who understand it

Posted by lexington, 09-21-2008, 10:46 PM
I do not think I will ever fully understand ereg, eregi, or preg match since the tuturials I have read are far too confusing to customize so I can only grab examples off of the net. I created the following validation to prevent users from using anything but numbers and letters in their username: It works, but the problem is if the user adds a space it calls up this error as well. I would like users to have spaces in their username so how can that ereg be modified to work with spaces? Please provide a working example and thanks! Last edited by lexington; 09-21-2008 at 10:49 PM.

Posted by lexington, 09-21-2008, 11:07 PM
Ah nm I figured it out. Surprised how simple it is: Just added a "space" after the 9.

Posted by Tim Greer, 09-21-2008, 11:09 PM
You can (and should) strip off leading and trailing white spaces, and then you can just allow valid "word characters" and a space between, and more word characters, unless you expect there will be more white space. I.e., instead of just JohnSmith and John Smith, you have John Jonas Smith. You can account for that as well. It depends on what you want to do, but regular expressions are pretty easy, actually. Just to allow white space with the existing example, you could use: \s is white space.

Esta resposta foi útil?

 Imprimir este Artigo

Leia também

Need Shell script to add prefix to multiple files' name.

Posted by viettechorg, 03-25-2007, 02:09 PMHello, Does anyone know any of the shell script(or...

Question on array sorting in php

Posted by computerwiz3491, 01-17-2008, 05:10 PMI have the following array that I printed using...

Trouble Enabling DMA Mode on IDE Drive

Posted by GriffinRUN, 04-23-2009, 12:14 AMI cannot enable DMA mode on /dev/hda when attemping to...

WHM/Cpanel Exim issue - how to better secure a partially open relay

Posted by MnMNmN, 02-14-2008, 10:04 PMHi all, I have a WHM/CPanel server. I have done some...

How do I control the number of user downloading and the download speed?

Posted by celular, 09-20-2008, 11:04 PMhello, I am planning to rent a dedicated server with...