473,503 Members | 1,797 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Writting RegularExpressionValidator for time?

Hello:
I have a textbox which let user key in time..
sample of data:
06:00 AM
9:15 PM
User only can key in the 12 hour format.
how to write the Regular Expression for such input?
Thanks!!!!
Nov 18 '05 #1
6 6528
http://www.regexlib.com/Search.aspxenter Clock into keyword search
box..(?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?)
Nov 18 '05 #2
Check this tool out http://www.sellsbrothers.com/tools/#regexd

- Sahil Malik
You can reach me thru my blog -
http://www.dotnetjunkies.com/weblog/sahilmalik
"Raed Sawalha" <ra**********@hotmail.com> wrote in message
news:OL***************@TK2MSFTNGP11.phx.gbl...
Hello:
I have a textbox which let user key in time..
sample of data:
06:00 AM
9:15 PM
User only can key in the 12 hour format.
how to write the Regular Expression for such input?
Thanks!!!!

Nov 18 '05 #3
Save yourself a lot of trouble, and use a couple of drop-down list boxes for
this. You're expecting too much from your (l)users.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Raed Sawalha" <ra**********@hotmail.com> wrote in message
news:OL*************@TK2MSFTNGP11.phx.gbl...
Hello:
I have a textbox which let user key in time..
sample of data:
06:00 AM
9:15 PM
User only can key in the 12 hour format.
how to write the Regular Expression for such input?
Thanks!!!!

Nov 18 '05 #4
I did like this
On Page Load function
Regex r = new
Regex(@"?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?",RegexOptio
ns.IgnoreCase);

but aI'm getting this when paging executing ,

parsing "?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?" -
Quantifier {x,y} following nothing. Parameter name:
?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?

Regards
"Adrian Parker" <ap******@nospam.com> wrote in message
news:OD**************@TK2MSFTNGP11.phx.gbl...
http://www.regexlib.com/Search.aspxenter Clock into keyword search
box..(?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?)

Nov 18 '05 #5
you need the brackets at the ends of the string..

Regex r = new
Regex(@"(?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?)",RegexOptions.IgnoreCase);

"Raed Sawalha" <ra**********@hotmail.com> wrote in message
news:up**************@TK2MSFTNGP11.phx.gbl...
I did like this
On Page Load function
Regex r = new
Regex(@"?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?",RegexOptio
ns.IgnoreCase);

but aI'm getting this when paging executing ,

parsing "?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?" -
Quantifier {x,y} following nothing. Parameter name:
?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?

Regards
"Adrian Parker" <ap******@nospam.com> wrote in message
news:OD**************@TK2MSFTNGP11.phx.gbl...
http://www.regexlib.com/Search.aspxenter Clock into keyword search
box..(?<Time>^(?:0?[1-9]:[0-5]|1(?=[012])\d:[0-5])\d(?:[ap]m)?)


Nov 18 '05 #6
Sometimes users don't want to use listboxes.. I had to write somehting like
this to let em type dates and times in manually on a timesheet entry form..
they didn't like going from the kbd to the mouse to the kbd etc.

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:eg*************@TK2MSFTNGP11.phx.gbl...
Save yourself a lot of trouble, and use a couple of drop-down list boxes
for
this. You're expecting too much from your (l)users.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Raed Sawalha" <ra**********@hotmail.com> wrote in message
news:OL*************@TK2MSFTNGP11.phx.gbl...
Hello:
I have a textbox which let user key in time..
sample of data:
06:00 AM
9:15 PM
User only can key in the 12 hour format.
how to write the Regular Expression for such input?
Thanks!!!!


Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2994
by: Andy Eshtry | last post by:
I have a radio button list, a textbox representing SIN or EIN based on my radio button list selection so I put 2 regularexpressionvalidator to evaluate the value of textbox. EIN must be (for...
3
3777
by: Ricardo Corsi P. Cesar | last post by:
Hi, i looking for example in asp.net (VB) to make the RegularExpressionValidator in runtime in my code behind. I found some similars codes, but nothing in VB.. thanks!
3
2011
by: DC | last post by:
I have this snippet: <tr> <td align="left">E-mail</td> <td> <asp:TextBox id="txtEmail" runat="server" MaxLength="100"></asp:TextBox>&nbsp; <asp:RegularExpressionValidator id="revEmail"...
0
2218
by: Shan Plourde | last post by:
Hi everyone, I have been using various regular expressions with the ASP.NET RegularExpressionValidator for quite some time. In general it works very well. One of the common regex's that I use...
2
1175
by: Sparky Arbuckle | last post by:
I've got a RegularExpressionValidator that partly works. Let me explain: With the Validator below I am only able to search for one letter/number at a time. If I want to search for Diana I see...
1
1813
by: franz | last post by:
does anybody tell me why it doesn't works?? in any case gg beame true thanks franz Dim y As RegularExpressionValidator = New RegularExpressionValidator y.ValidationExpression =...
1
1470
by: John Yopp | last post by:
I'm trying to use a asp:RegularExpressionValidator to validate the strength of a password. When I test the regular expression with Regex.IsMatch, it works perfectly. However, when used within a...
4
6035
by: =?Utf-8?B?Y3VyaW91cw==?= | last post by:
I am using a RegularExpressionValidator to validate a TextBox. I use "^?+(\.*)?$" to check for a real number. The control works fine as long as the user enters something in the TextBox; it does not...
6
2393
by: Steve Ryan | last post by:
can anyone send me to some good examples of edit in place for data frid columns i see dot net let me assign a control in the IDE any good sources of reading on editing columns with controls...
0
7199
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7274
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6984
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7453
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5576
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3162
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3151
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1507
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
732
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.