Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Regular expression
Message
From
09/11/2007 02:02:59
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
 
 
To
08/11/2007 22:46:30
General information
Forum:
Visual FoxPro
Category:
Third party products
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01267839
Message ID:
01267850
Views:
11
>Hi,
>I am using RegExp fll by Craig Boyd to validate strong password. Currently, I am using "^[a-zA-Z0-9]+$" to ensure password contains alphanumeric.
>
>How would the reg expression look like if I want to allow leading/trailing spaces as well?
>
>Thank you

Try:
loRegExp.PATTERN = '^[ \t]*\w+[ \t]*$'
note: \w will include '_' in the pattern what is widespread used within alphanumeric. \t will be tab, if you don't need
loRegExp.PATTERN = '^ *\w+ *$'
will do

Agnes
Words are given to man to enable him to conceal his true feelings.
Charles Maurice de Talleyrand-Périgord

Weeks of programming can save you hours of planning.

Off

There is no place like [::1]
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform