473,378 Members | 1,621 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,378 software developers and data experts.

Hi

I am very much new to JavaScript.I need to validate IP
Adress field in such a way that it should accept values form 0-255 in
the format (IPaddress=123.221.3.5) or any oher values but between 0 and
255,excluding 0 and 255.Every field should be seperated by a dot as
shown in example.
Kindly help me in sorting it out

Aug 10 '06 #1
9 1630
sh********@gmail.com wrote:
I am very much new to JavaScript.I need to validate IP
Adress field in such a way that it should accept values form 0-255 in
the format (IPaddress=123.221.3.5) or any oher values but between 0 and
255,excluding 0 and 255.Every field should be seperated by a dot as
shown in example.
Kindly help me in sorting it out
Hi,

If you use that as a String, you can split in on the . and get 4 values.
The function split() returns 4 values in an array in your case.
Try to cast each seperate value to an interger, using parseInt(), and check
if that is possible (if not, you are receiving something like abc.34.g.lp).
(Make sure you pass the right radix, 10, to the function as second argument,
otherwise Javascript will interpret strings that begin with '0X' as
hexadecimal.)
Also, it is quite impossible to learn Javascript from the web/newsgroups
without a good book/reference.
My advise is: O'Reilly's 'Javascript, the definitive guide 4th edition'.

Good luck,

Regards,
Erwin Moller
Aug 10 '06 #2
You can also use regular expression to test IP Address. Try something
like this:
/****
* @author Georgi Naumov
* @abstract This function
* assumes IP address as
* argument and test if
* the argument is valid
* IP Address or not.
* @param aIpAddress -
* IP addres whos will be
* checked.
* @return true if the argument
* is valid false otherwise.
***/
function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));
Best Regards
Erwin Moller написа:
sh********@gmail.com wrote:
I am very much new to JavaScript.I need to validate IP
Adress field in such a way that it should accept values form 0-255 in
the format (IPaddress=123.221.3.5) or any oher values but between 0 and
255,excluding 0 and 255.Every field should be seperated by a dot as
shown in example.
Kindly help me in sorting it out

Hi,

If you use that as a String, you can split in on the . and get 4 values.
The function split() returns 4 values in an array in your case.
Try to cast each seperate value to an interger, using parseInt(), and check
if that is possible (if not, you are receiving something like abc.34.g.lp).
(Make sure you pass the right radix, 10, to the function as second argument,
otherwise Javascript will interpret strings that begin with '0X' as
hexadecimal.)
Also, it is quite impossible to learn Javascript from the web/newsgroups
without a good book/reference.
My advise is: O'Reilly's 'Javascript, the definitive guide 4th edition'.

Good luck,

Regards,
Erwin Moller
Aug 10 '06 #3
JRS: In article <44**********************@news.xs4all.nl>, dated Thu,
10 Aug 2006 11:08:00 remote, seen in news:comp.lang.javascript, Erwin
Moller <si******************************************@spam yourself.com>
posted :
>sh********@gmail.com wrote:
OP : please use an intelligent Subject line.
>I need to validate IP
>Adress field
>If you use that as a String, you can split in on the . and get 4 values.
The function split() returns 4 values in an array in your case.
Try to cast each seperate value to an interger, using parseInt(), and check
if that is possible (if not, you are receiving something like abc.34.g.lp).
(Make sure you pass the right radix, 10, to the function as second argument,
otherwise Javascript will interpret strings that begin with '0X' as
hexadecimal.)
But parseInt(S, 10) will accept S = "12J" & S = "-155".

I suggest a RegExp .match() with /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/
which should IIRC give either null or an array whose elements 1..4 are
the digit strings. Those can be converted in a loop to numbers with
unary + and checked numerically for range.

Actually, it should be (\d{1.3}) but with a numeric range-check that
should not matter.

Consider
S = "004.6.155.133"
M = S.match(/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/)
if (!M) alert("bad pattern")
for (j=1; j<=4; j++) { T = +M[j]
if (T==0 || T>254) alert("bad #"+j) }
--
John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 MIME.
Web <URL:http://www.merlyn.demon.co.uk/- FAQqish topics, acronyms & links;
Astro stuff via astron-1.htm, gravity0.htm ; quotings.htm, pascal.htm, etc.
No Encoding. Quotes before replies. Snip well. Write clearly. Don't Mail News.
Aug 10 '06 #4
JRS: In article <11**********************@i3g2000cwc.googlegroups. com>,
dated Thu, 10 Aug 2006 04:38:10 remote, seen in
news:comp.lang.javascript, Georgi Naumov <go******@gmail.composted :
function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));
Your RegExp does not work in all JS browsers. Your use of [1-254] is a
construction I don't recall seeing before. {1} seems superfluous. I
don't see the need for .toString().

And return myStr.search(re) != null is simpler.

--
John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 10 '06 #5
Dr John Stockton <jr*@merlyn.demon.co.ukwrites:
JRS: In article <11**********************@i3g2000cwc.googlegroups. com>,
dated Thu, 10 Aug 2006 04:38:10 remote, seen in
news:comp.lang.javascript, Georgi Naumov <go******@gmail.composted :
> function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));

Your RegExp does not work in all JS browsers. Your use of [1-254] is a
construction I don't recall seeing before.
You probably have seen it. It matches the characters 1, 2, 5 and 4.

What was probably intended would be:
(?:(?:[01]?[0-9])?[0-9]|2(?:[0-4][0-9]|5[0-5]))
i.e., numbers in the range 0 through 255 (it should not be just 1..254!)

The resulting total regexp is quite impressive, and a good example
of why you shouldn't use regexps for everything. It's much better
to test the format using a regexp and then test the numeric properties
using ... numbers.

function isIpAddressValid(ipAddressString) {
// test format dotted quad
if (!/^(?:\d{1,3}\.){3}\d{1,3}$/.test(ipAddressString)) {
return false;
}
// test numbers 0 .. 255
var parts = ipAddressString.split(".");
for(var i = 0; i < 3; i++) {
var n = parts[i] = Number(parts[i]);
if (n 255) {
return false;
}
}
return true;
}

When you have parsed the ipAddressString into quad numbers, it's
easy to add other tests. E.g., insert this before "return true":

// test probable network or broadcast address. Bad!
if (parts[3] == 0 || parts[3] == 255) {
return false;
}

{1} seems superfluous. I don't see the need for .toString().
Can't see from this post what type aIpAddress might have. If it's
a user defined object, then you do need to convert it to string
to use the "search" method.
And return myStr.search(re) != null is simpler.
Since String.prototype.search returns a number, the index of the match
and -1 if no match, this test is always false.

So, alternatively:
return myStr.search(re) >= 0;
or, since the regexp is rooted at both ends,
return !myStr.search(re); // since it's always 0 or -1.

/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.'
Aug 10 '06 #6
Your RegExp does not work in all JS browsers.
I have tested this code under Mozilla FireFox, Opera9 and Internet
Explorer and it worked fine.
>.Your use of [1-254] is a
construction I don't recall seeing before.
[1-254] Is a "character class" and tell to regular expression engine
"Match a single character in the range between 1 and 254".
>.{1} seems superfluous.
You are rigth.
don't see the need for .toString().
This is provided if the argument is something different from string.
For
example user defined object.
And return myStr.search(re) != null is simpler.
Yes this is much better.
You can test this improved version. I wrote it only for fun.

/**
* @author Georgi Naumov
* @version 1.1 ;)
* @abstract This function assumes IP address as
* argument and test if the argument is valid
* IP Address or not.
* @param aIpAddress - IP addres whos will be
* checked.
* @return true if the argument
* is valid false otherwise.
*
* Special thanks for John Stockton
* for his criticism.
**/
function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]\.){3}[1-254]$/;
var myStr=aIpAddress.toString();
return myStr.search(re) != null;
}
/**
* Example for function usage.
*/
alert(IsIpAddressValid("333.333.3.3"));

Best Regards

Dr John Stockton написа:
JRS: In article <11**********************@i3g2000cwc.googlegroups. com>,
dated Thu, 10 Aug 2006 04:38:10 remote, seen in
news:comp.lang.javascript, Georgi Naumov <go******@gmail.composted :
function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));

Your RegExp does not work in all JS browsers. Your use of [1-254] is a
construction I don't recall seeing before. {1} seems superfluous. I
don't see the need for .toString().

And return myStr.search(re) != null is simpler.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00IE 4 ©
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 11 '06 #7
There was a erros in my posting. Sorry for this. Anyway the
conversation is very usefull.
Lasse Reichstein Nielsen написа:
Dr John Stockton <jr*@merlyn.demon.co.ukwrites:
JRS: In article <11**********************@i3g2000cwc.googlegroups. com>,
dated Thu, 10 Aug 2006 04:38:10 remote, seen in
news:comp.lang.javascript, Georgi Naumov <go******@gmail.composted :
function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));
Your RegExp does not work in all JS browsers. Your use of [1-254] is a
construction I don't recall seeing before.

You probably have seen it. It matches the characters 1, 2, 5 and 4.

What was probably intended would be:
(?:(?:[01]?[0-9])?[0-9]|2(?:[0-4][0-9]|5[0-5]))
i.e., numbers in the range 0 through 255 (it should not be just 1..254!)

The resulting total regexp is quite impressive, and a good example
of why you shouldn't use regexps for everything. It's much better
to test the format using a regexp and then test the numeric properties
using ... numbers.

function isIpAddressValid(ipAddressString) {
// test format dotted quad
if (!/^(?:\d{1,3}\.){3}\d{1,3}$/.test(ipAddressString)) {
return false;
}
// test numbers 0 .. 255
var parts = ipAddressString.split(".");
for(var i = 0; i < 3; i++) {
var n = parts[i] = Number(parts[i]);
if (n 255) {
return false;
}
}
return true;
}

When you have parsed the ipAddressString into quad numbers, it's
easy to add other tests. E.g., insert this before "return true":

// test probable network or broadcast address. Bad!
if (parts[3] == 0 || parts[3] == 255) {
return false;
}

{1} seems superfluous. I don't see the need for .toString().

Can't see from this post what type aIpAddress might have. If it's
a user defined object, then you do need to convert it to string
to use the "search" method.
And return myStr.search(re) != null is simpler.

Since String.prototype.search returns a number, the index of the match
and -1 if no match, this test is always false.

So, alternatively:
return myStr.search(re) >= 0;
or, since the regexp is rooted at both ends,
return !myStr.search(re); // since it's always 0 or -1.

/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.'
Aug 11 '06 #8
Georgi Naumov wrote:
>Your RegExp does not work in all JS browsers.
I have tested this code under Mozilla FireFox, Opera9
and Internet Explorer and it worked fine.
The difference between 3 and 'all' is at least couple of dozen. The
regular expression is not limited to the constructs defined in the
current ECMA specification for javascript regular expressions, and
assuming universal support for language extensions is rarely advisable
outside a known environment.
>>.Your use of [1-254] is a
construction I don't recall seeing before.
[1-254] Is a "character class" and tell to regular expression
engine "Match a single character in the range between 1 and 254".
It is a character calls, but the sense in which it is possible for a
single character to be in a range between 1 and 254 is very
questionable, as 254 is 3 characters. And if we were talking character
codes between 1 and 254 the result would not resemble the question asked
at all.

That character calls actually matches a single character in the range 1
to 2 and the characters 5 and 4; 1,2,4 and 5. It will not do the job
required here, though non-vigorous testing may produce the illusion that
it does.
<snip>

Richard.

Aug 11 '06 #9
JRS: In article <7j**********@hotpop.com>, dated Fri, 11 Aug 2006
01:10:22 remote, seen in news:comp.lang.javascript, Lasse Reichstein
Nielsen <lr*@hotpop.composted :
>Dr John Stockton <jr*@merlyn.demon.co.ukwrites:
>JRS: In article <11**********************@i3g2000cwc.googlegroups. com>,
dated Thu, 10 Aug 2006 04:38:10 remote, seen in
news:comp.lang.javascript, Georgi Naumov <go******@gmail.composted :
>> function IsIpAddressValid(aIpAddress){
var re=/^(?:[1-254]{1}\.){3}[1-254]{1}$/;
var myStr=aIpAddress.toString();
if(myStr.search(re) != null)
return true;
else
return false;
}
alert(IsIpAddressValid("192.168.10.1"));

Your RegExp does not work in all JS browsers. Your use of [1-254] is a
construction I don't recall seeing before.

You probably have seen it. It matches the characters 1, 2, 5 and 4.
Perhaps I should have used "**Your use**" ... since he clearly expects
it to match a string of numerical value between 1 & 254 inclusive.

>What was probably intended would be:
(?:(?:[01]?[0-9])?[0-9]|2(?:[0-4][0-9]|5[0-5]))
i.e., numbers in the range 0 through 255 (it should not be just 1..254!)
The OP seems both to want and not want to include 0 & 255, I
demonstrated the latter.
>{1} seems superfluous. I don't see the need for .toString().

Can't see from this post what type aIpAddress might have. If it's
a user defined object, then you do need to convert it to string
to use the "search" method.
ISTM that the surrounding code must provide a string - nothing else can
hold a dotted quad - and if the coder inadvertently passed a non-string
then the surrounding code is unreasonable and needs fixing.
>And return myStr.search(re) != null is simpler.

Since String.prototype.search returns a number, the index of the match
and -1 if no match, this test is always false.
Alas, although writing "search" I was thinking "match", as used in my
first post in this thread. Match is useful in that it provides both an
answer to "is the pattern OK?" and a decomposition into the desired
fields (there may be some unlikely case, such as using a RegExp to find
nothing in an empty string, where one cannot tell the difference).
Read the newsgroup FAQ.
--
John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4
<URL:http://www.jibbering.com/faq/>? JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 11 '06 #10

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...

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.