473,386 Members | 1,846 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

a problem with text field verification

I have to write a program to verify text field in HTML forms.
So,I hane to verify a text field with lenth 10 & maxlenth 10.The
entered text should be as follows.
xxxxxxxxxy
where xxxxxxxxx denotes a combination of numbers and y should be one
of 'X','x','V'or 'v'.Also inputs such as 000000000v,000000000X are not
possible.
Jul 20 '05 #1
8 1782
In article <6d**************************@posting.google.com >, dm***@mail.com
(gunawardana) writes:
I have to write a program to verify text field in HTML forms.
So,I hane to verify a text field with lenth 10 & maxlenth 10.The
entered text should be as follows.
xxxxxxxxxy
where xxxxxxxxx denotes a combination of numbers and y should be one
of 'X','x','V'or 'v'.Also inputs such as 000000000v,000000000X are not
possible.


Try reading your schoolbook and doing your own homework?
--
Randy
Jul 20 '05 #2
Hello,

Validate the string as:

str="012345678x";
var pat = new RegExp(/[0-9]{9}[xv]/i);
if (pat.exec(str)==null)
alert('Invalid input!');

--
Elias

"gunawardana" <dm***@mail.com> wrote in message
news:6d**************************@posting.google.c om...
I have to write a program to verify text field in HTML forms.
So,I hane to verify a text field with lenth 10 & maxlenth 10.The
entered text should be as follows.
xxxxxxxxxy
where xxxxxxxxx denotes a combination of numbers and y should be one
of 'X','x','V'or 'v'.Also inputs such as 000000000v,000000000X are not
possible.

Jul 20 '05 #3
"gunawardana" <dm***@mail.com> wrote in message
news:6d**************************@posting.google.c om...
I have to write a program to verify text field in HTML forms.
So,I hane to verify a text field with lenth 10 & maxlenth 10.The
entered text should be as follows.
xxxxxxxxxy
where xxxxxxxxx denotes a combination of numbers and y should be one
of 'X','x','V'or 'v'.Also inputs such as 000000000v,000000000X are not
possible.

I'm sure there's a Regular expression that does what you want with less
coding but here's one solution; watch for word-wrap.
<html>
<head>
<title>gunawardana.htm</title>
<script language="javascript" type="text/javascript">
<!--
function check() {
var form = document.forms[0];
var data = form.Data.value;
if (data.length != 10) return;
if (data.substr(0,9) == "000000000") return;
for (var i=0; i<9; i++) {
if (data.charAt(i) < "0" || data.charAt(i) > "9") return;
}
if ("XxVv".indexOf(data.charAt(9)) < 0) return;
alert("OK!");
}
//-->
</script>
</head>
<body>
<form>
<input type="text" name="Data" size="10" maxlength="10">
<input type="button" value="Check" onclick="check()">
</form>
</body>
</html>
Jul 20 '05 #4
JRS: In article <6d**************************@posting.google.com >, seen
in news:comp.lang.javascript, gunawardana <dm***@mail.com> posted at
Mon, 22 Dec 2003 20:32:27 :-
I have to write a program to verify text field in HTML forms.
So,I hane to verify a text field with lenth 10 & maxlenth 10.The
entered text should be as follows.
xxxxxxxxxy
where xxxxxxxxx denotes a combination of numbers and y should be one
of 'X','x','V'or 'v'.Also inputs such as 000000000v,000000000X are not
possible.


But what do you mean by "such as"? With leading zero? With all zeroes?

There is an "or" facility in a RegExp, but not AFAIK an equivalent
"and".

Don't use a RegExp; use two, the second to deal with whatever "such as"
means.

OK = /^\d{9}(v|x)$/i.test(S) && /[1-9]/.test(S) // not 000000000
OK = /^\[1-9]d{8}(v|x)$/i.test(S) // not leading zero

See in <URL:http://www.merlyn.demon.co.uk/js-valid.htm>.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 20 '05 #5
Dr John Stockton <sp**@merlyn.demon.co.uk> writes:
There is an "or" facility in a RegExp, but not AFAIK an equivalent
"and".
Not directly. There could be, since there is nothing in the technology
used that prohibits and "and" (and regular languages are closed under
intersection).
The closest you get is positive lookahead, i.e., to match five digits
and at least one 4, you can write
/^(?=\d{5})\d*4\d*$/
Don't use a RegExp; use two,


Agreed. Often, a very complex regular expressin can be written as
two simple ones.

Example: String contains n "a"'s and m "b"'s:

Two regexps:
/^[^a]*(a[^a]*){n}$/
/^[^b]*(b[^b]*){m}$/

I won't even begin to write a regexp for n and m with values much over 2.
Try :)

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #6
Lasse Reichstein Nielsen <lr*@hotpop.com> wrote in
news:1x**********@hotpop.com:
Dr John Stockton <sp**@merlyn.demon.co.uk> writes:
There is an "or" facility in a RegExp, but not AFAIK an equivalent
"and".


Not directly. There could be, since there is nothing in the technology
used that prohibits and "and" (and regular languages are closed under
intersection).
The closest you get is positive lookahead, i.e., to match five digits
and at least one 4, you can write
/^(?=\d{5})\d*4\d*$/


Actually you can use positive lookahead to implement an arbitrary "and":
/^(?=.*this)(?=.*that)/ (a trick introduced in the _Perl Cookbook_ and
implemented in a Perl module of mine).

However, doing two separate tests will usually be more efficient and the
lookahead trick should probably be used only when the match parameters
aren't known until runtime.
Jul 20 '05 #7
Eric Bohlman <eb******@earthlink.net> writes:
Actually you can use positive lookahead to implement an arbitrary "and":
/^(?=.*this)(?=.*that)/ (a trick introduced in the _Perl Cookbook_ and
implemented in a Perl module of mine).


The problem is that you can only do this efficiently at the end of a string.
Compare this for "or':
/z(aa|bbb)cd/
If we had the hypothetical & operator, and wrote
/z(.*this.*&.*that.*)cd/
then we wanted the part between "z" and "cd" to contain both "this"
and "that".

If you do that with lookahead, you need to be able to bound the search
somehow, or the lookahead can test past the cd. As your example:
/z(?=.*this)(.*that.*)cd/
would incorrectly match
"z that cd this"

You need to ensure that the lookahead is only tested against the same
string as the other argument to "and".
You can do "the trick" and duplicate the continuation:
/z(?=.*this.*cd)(.*that.*cd)/
but even that can be broken by using more complex expressions. Take
"all digits, and at least three 4's":

/z(\d*&(.*4){3}.*)cd/
Doing the trick here gives
/z(?=\d*cd)(.*4){3}.*cd/
However, that also matches
"z111cd444cd"

Again, you have to build your RegExps so the lookahead is bounded,
something that was not necessary with the hypothetical "&" operator.
/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #8
lallous wrote:
str="012345678x";
var pat = new RegExp(/[0-9]{9}[xv]/i);
No. Either

var pat = /\d{9}[xv]/i;

or

var pat = new RegExp("\\d{9}[xv]", "i");
if (pat.exec(str)==null)
if (! pat.test(str))
alert('Invalid input!');

[Top post]


Please do not do this, you are wasting
scarce and thus precious resources.
PointedEars
Jul 20 '05 #9

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

Similar topics

1
by: Paul Porcelli | last post by:
I have the following code(excerpt) which grabs some lines from a syslog file and adds any found in the range to an array. @lines=();@vvlines=(); $t = new Net::Telnet (Timeout => 30, Prompt =>...
1
by: Will | last post by:
(My 4 questins at end after explination) The code below was provided to me to "Popup" a window explaining what a Credit Card Verification Number is and where to find it on a card... it is used as...
2
by: Will | last post by:
(My 4 questins at end after explination) The code below was provided to me to "Popup" a window explaining what a Credit Card Verification Number is and where to find it on a card... it is used as...
1
by: Mike the Canadian | last post by:
I am having a strange problem with field verification in a form. The JavaScript below works just fine in Firefox but in IE. "license" is a pull-down list and "requiredDiscount" is a text field....
4
by: Vladislav Moltchanov | last post by:
I try to use MS Access application as data entry/verification tool in a multi-centre international project, where each centre uses this application for local project management and data...
1
by: moi | last post by:
Hello, I try to make a login.aspx page to login an Active directory's user and i have a 1315 Web event Error in Windows server 2003 application's log with this error : 4006 Membership credentiel...
4
by: Vikas Kumar | last post by:
propertyDescription += "<br>" + lblpropertyDescription.Text; //here i am reading some text from text area i test wrting "p" in my text area it wrks fine but when i write <pin my text...
3
by: mcmahonb | last post by:
Hey people... I've been searching this forum for a few hours and even though this topic has been went over from many different angles; I cannot seem to figure out how to make things work on my...
3
by: Jano | last post by:
Hi - Happy New Year! I have a web-site which accepted paypal payment for membership. No-one's buying so I want to make it free. The page which inputs the member details into the database needs...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
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...

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.