Hi,
I need following password complexity reqular expression.
1. Minimum 8 character, Maximun 12 chars
2. Atleast 1 numeric values
3. Atleast 1 special characters
Advannced thanks...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21596609.html
Zones:
C#Date Answered: 04/01/2006 Grade: A Views: 0
Hi,
I have following string:
cn=test,ou=organization1,ou=organization2,....,dc=server,dc=com
I want to replace cn=test by cn=anotherstring , so resulting string should look like:
cn=anotherst...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21444513.html
Zones:
PerlDate Answered: 06/03/2005 Grade: A Views: 0
Hello,
I am having trouble with wild characters in my regular expressions.
Background:
I am reading various text files and I am comparing texts between the two files. During runtime I am...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21622065.html
Zones:
PerlDate Answered: 11/07/2005 Grade: A Views: 4
I am trying to use the following regular expression to trim input values in Javascript:
function removeWhiteSpace(sVal){
var searchFront = /^\s*/;
var searchEnd = /\s*$/;
sVal = sVal.repla...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_10883461.html
Zones:
JavaScriptDate Answered: 08/02/2000 Grade: A Views: 0
Hell experts,
I have the following code that replaces the word "Hello" typed in any case with "<font color=#CE0000>hello</font>" Notice the word "hello" is now lower case.
mytext = 'Hello J...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_21246414.html
I need a reqular expression pattern for accepting only positive decimal numbers only. Thanks in advance
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22023306.html
Zones:
C#Date Answered: 11/21/2006 Grade: A Views: 0
Hello Experts,
I need a Regular Expression Validator which will manage the following:
1) Field is required (no null values)
2) Positive Integers only (above 0)
Thanks!
GRCHELPDESK
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22144156.html
I need a simple Regular expression pattern to check a Date in this format: yyyy/mm/dd. The thing is that I don't want to check the date validation!!! only format validation is enough. for example 1...
http://www.experts-exchange.com/Programming/Languages/Regular_Expressions/Q_23375003.html
Hello Experts,
Could someone please give me the regular expression to match text contained within two quotes?
I use the following javascript to convert the word "WHERE" to "<font color=blue>W...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_21234344.html
I need to validate an optional phone field with a regular expression (using a regular expression validator).
The phone part works fine: ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}
How do I say "o...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_21556081.html
Zones:
JavaScriptDate Answered: 09/20/2005 Grade: A Views: 0