473,804 Members | 3,353 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RegularExpressi onValidator help

I'm hoping this is simple. All I want to do is to make sure that a /
(slash) is not entered into a text box. here are some of my failed
attempts:

ValidationExpre ssion="\w[^\/]"
ValidationExpre ssion="\w[^/]"
ValidationExpre ssion="^/"
ValidationExpre ssion="[^/]"
ValidationExpre ssion="w[^/]"

... and many more variations. please help!
Nov 18 '05 #1
5 1282
Mark Dengler wrote:
.. and many more variations. please help!


if (!Regex.IsMatch ("Is this string / valid?", "/"))
{
// You have a valid string, process it.
}

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
Nov 18 '05 #2
Hi Mark,

You would have to make sure to include everything except the slash ... eg
....

ValidationExpre ssion = "^[\w\s\d]*$"

.... add other things between the [] that you want to match. otherwise, go
with Frank's !Match solution

Alex Papadimoulis
"Mark Dengler" <md******@go.co m> wrote in message
news:8c******** *************** ***@posting.goo gle.com...
I'm hoping this is simple. All I want to do is to make sure that a /
(slash) is not entered into a text box. here are some of my failed
attempts:

ValidationExpre ssion="\w[^\/]"
ValidationExpre ssion="\w[^/]"
ValidationExpre ssion="^/"
ValidationExpre ssion="[^/]"
ValidationExpre ssion="w[^/]"

.. and many more variations. please help!

Nov 18 '05 #3
Frank,

I'm leaning towards your solution because I'm able to specify the single
item that is not valid as opposed to everything that is. Does this
solution apply to server processing only or may I implement this on the
client?
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #4
You could use this one:

[^/]*

The "[^/]" syntax means "any character except for /". The "*" just means
"zero or more". You had the right idea in your fourth expression, but it
would only match if there were just a single character input. Adding the
"*" allows any size input (including zero-length) as long as there is no
slash.
Brian Davis
www.knowdotnet.com

"Mark Dengler" <md******@go.co m> wrote in message
news:8c******** *************** ***@posting.goo gle.com...
I'm hoping this is simple. All I want to do is to make sure that a /
(slash) is not entered into a text box. here are some of my failed
attempts:

ValidationExpre ssion="\w[^\/]"
ValidationExpre ssion="\w[^/]"
ValidationExpre ssion="^/"
ValidationExpre ssion="[^/]"
ValidationExpre ssion="w[^/]"

.. and many more variations. please help!

Nov 18 '05 #5

Brian... that's what I'm talkin about! Thanks.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #6

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

Similar topics

0
3018
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 simplicity) with this format (2 digits) like 12 (ValidationExpression="\d{3}-\d{2}") and SIN must be (for simplicity) with this format (3digits-2digits) like 123-45 (ValidationExpression="\d{3}-\d{2}") It works well. The problem is: When I...
1
1419
by: MS Newsgroups | last post by:
Hi, I am new to Asp and need some help to write an expression to use with a regularexpressionvalidator. I need to validate that the field meets these requirements: minimum of 8 characters Contain a minimum of 1 lowercase and 1 Uppercase character and one special character (or digit)
3
3799
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!
0
1165
by: venkat Murthy | last post by:
Hi, I have 10 regularexpression validators in my datagrid. my datagrid looks like; first5controls | boundcolumn | next5controls. Regularexpressionvalidator for first five controls works fine. But, it throws wierd errors when the error message is caught for next5controls.
1
1849
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 = "^\w+(\w+)*@\w+(\w+)*\.\w+(\w+)*$" y.ControlToValidate = "ss5ssss" Dim gg As Boolean = y.IsValid
1
1495
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 RegularExpressionValidator, it always returns false. Has anyone else had issues with the RegularExpressionValidator not correctly parsing a regular expression? The regular expression I am using is: "^.*(?=.*\d)|(?=.*)|(?=.*)(?=.*)(?=.{8,}).*$"
4
581
by: simonZ | last post by:
I have RegularExpressionValidator which validate one text box. When my text box is validated on client I would like to do something else. Is there some client event of RegularExpressionValidator? Something like after validate? something like: <script language="javaScript">
4
6059
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 work if the user leaves the TextBox blank. Is there a bug in the implementation of the RegularExpressionValidator? The above regluar expression should also catch no entry by the user. I have added a RequiredFieldValidator to solve the...
0
1017
by: alastair.slater | last post by:
Hi all, Can anyone help please? I'm using the following code to validate a password entered by new users in an <asp:Textbox ... />: <asp:RegularExpressionValidator ID="RegularPassword" runat="server" ControlToValidate="RegisterPassword" SetFocusOnError="True"
9
3931
by: Nathan Sokalski | last post by:
I have several TextBoxes with TextMode="MultiLine" in which I want to limit the number of characters that can be entered using a RegularExpressionValidator. I have come up with the following ValidationExpression: {0,250} The only problem with this ValidationExpression is that it does not include the \n character as stated on the following documentation page:
0
9711
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10594
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10343
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10331
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10087
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7631
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5529
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4306
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 we have to send another system
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.