Web Forms :: US State Codes Regular Expression Being Case-insensitive?
Apr 24, 2010
I am not very good at regular expressions.I found this code that I placed into the Regular Expression for my State code. I only allows the letters to be UPPERCASE. I need to validate for Lower case. I found a website that said to add (?i) in from, but when I do that, it accepts ALL values, even the value of "xx".
I have a DropDownList control that I am filling the selections in code and set the value to the value on the FormView Datasource row. However, if the case is different it does not set the selectedvalue to the current row value. It seems to be the case of the text because the table used to fill the dropdownlist has Jeep for a value and the data row has JEEP for a value. How can I make the DropDownList case insensitive?
I'm trying to use the validator to work on a email form to ensure that they enter a valid from email address. That part works. I also want to add to the expression the text that I pre-populate in the txtbox ("Enter your email address") so on postback, after sending the message, I can clear the fields and repopulate that box.
How do I add that wording to the current expression: w+([-+.']w+)*@w+([-.]w+)*.w+([-.]w+)*
I am using Regular Expression validator for a text box. The below is working fine.It is not performing validation when I enter values like 0000..001.How can I modify validation expression? But it would allow values like 100,...5000 i.e zeros after a number.
<asp:RegularExpressionValidator ID="reg2" runat="server" ControlToValidate="rng2" ValidationExpression="^[0-9]+" ErrorMessage="*Please Enter a Valid Number for Second Range." ForeColor="Red" Font-Bold="True"></asp:RegularExpressionValidator>
I need some help in regular expression.I am validating the textbox text when updating the records.When i click the update button,the first 5 letters should be equal to CM000 or cm000.How to validate this using regular expression in asp.net. does anyone know validationexpression for this.
I am a new to regular expressions.I need to validate an identification number so that the textbox doesn't accept numbers like 1111111, 2222222, 3333333......9999999 and 1234567, 2345678, 3456789.Could someone please post regular expression for not accepting such format.
I have a regular expression validation set on text box. I have a grid on the same page with edit and delete buttons. In some cases I don't want the regular expression to fire. For example, I have a scenario where the text box will be disabled but I can still enter data in to the grid and modify it, but the regular expression fires when I modify the grid and the changes in the grid are not processed.how can I stop the validation when I am working on grid. I can see a property causes validation for button to stop validation but don't know how can I stop for the grid.
i want to find and replace img src path by regular expression.suppose i have the below html and from there i want to replace file path of all the src attribute of image tag.
<P>Hello</P> <P> </P> <P><IMG alt="C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg" src="C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg"></P>
here the file path is src="C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg"
and i want to replace it with path like src="www.mysite.com/images/a.gif" with regular expression.how can i do it with regular expression.
I am facing a problem for doing URL validation which should allow atlest two periods in the URL.If the URL does not contain atleast two periods then it should throw an error. Also the regular expression must obey all the URL validations.Please help GURUS it is urgent for me to get some solution.
I am facing a problem with regex. I want to check for sepecial characters like ><*&()%$@!~+...
I need to filter these special charecters...but the problem is in my 10 textboxes there only 3 are required...
I can submit the form without entering anything...but my regex is not allowing me to submit the form without giving a space from keyboard...
I just want to check for special charecters and empty textbox without giving a spacebar...
I just check these sites(http://regexlib.com/ and http://www.regular-expressions.info/) and read some documentation on regex...its kind of confusing....
Here is my regex for Middlename: ^[a-zA-Z''-'s]|[ ]{1,40}$ its worked but its not correct....then I changed it to ^[a-zA-Z''-'sd*]{1,40}$ this also not taking emptytextbox without giving a space...
My Goal:
In most of the textboxes I need to allow only numbers and - # _ in some textboxes....
For Address: need to allow alphabets and numbers and #-_' "
City: numbers and alphabets no special chars...
Main problem is I can write regex for most of these stuff but need to all textboxes without entering anything (empty textboxes).My work got stoped due to this.
first character is in caps and the rest of the name is in small for Firstname Space first character is in caps and the rest of the name is in small for lastname
how to write a regular expression that accepts no less than 10 digits and no more than 11. i need it to validate a textbox for phone number. i have searched the web but i cant seem to find any.