Regular expressions

A

Arjen

Hi,

I need some regular expressions but don't know how to create them.
If somebody knows a good, easy to use, readable tool. Please tell me.

I have a textbox.
- The user must enter data. (it may not be empty)
- The data lenght must be between 1 to 255.
- The user may add data on multiple lines. (some lines may be left empty)
- The data is not case-sententive.
- All chars are accepted.

Can someone help me with this one?

Thanks!
 
O

Oliver Wong

Arjen said:
Hi,

I need some regular expressions but don't know how to create them.
If somebody knows a good, easy to use, readable tool. Please tell me.

I think the only way to seriously work with regular expressions is to
actually learn regular expressions. If you don't understand the principles,
then there' no way for you to tell if the tool is doing what you want (or
sometimes even how to express what you want to the tool).
I have a textbox.
- The user must enter data. (it may not be empty)
- The data lenght must be between 1 to 255.
- The user may add data on multiple lines. (some lines may be left empty)
- The data is not case-sententive.
- All chars are accepted.

Can someone help me with this one?

There's a lot of vagueness here, but I'm think ".{1,255}" satisfies all the
requirements above.

- Oliver
 
T

Tom.PesterDELETETHISSS

Hi Arjen,

An exellent tool for regexes is this : http://www.regexbuddy.com/

Try this regex ^.{1,255}$ and use the regex with the option "dot matches
newline" otherwise your 3th ristriction isn't covered.

If you use the tool it will explain you what the regex stands for.

Let me know if you have any more questions..

Cheers,
Tom Pester
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,236
Members
46,822
Latest member
israfaceZa

Latest Threads

Top