最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - preg_match to Javascript function - Stack Overflow

programmeradmin0浏览0评论
$value = 077283331111333;    
if( ! preg_match(/^[0-9]{1,20}+$/, $value))
{
    echo $value . " is not a number that has between 1,20 digits";
}

I'm trying to turn this Php conditional statement into a Javascript one.

This is what I have, currently not working.

var value = 077283331111333;
var regex = '/^[0-9]{1,20}+$/';
var match = regex.test(value);
if ( ! match) {
    console.log(value + 'is not a number that has between 1,20 digits');
}

And this is the error I'm getting.

Object /^[1,0]{1}+$//^[0-9]{1,20}+$/ has no method 'test'

Any ideas? Additionally this within a node.js environment.

$value = 077283331111333;    
if( ! preg_match(/^[0-9]{1,20}+$/, $value))
{
    echo $value . " is not a number that has between 1,20 digits";
}

I'm trying to turn this Php conditional statement into a Javascript one.

This is what I have, currently not working.

var value = 077283331111333;
var regex = '/^[0-9]{1,20}+$/';
var match = regex.test(value);
if ( ! match) {
    console.log(value + 'is not a number that has between 1,20 digits');
}

And this is the error I'm getting.

Object /^[1,0]{1}+$//^[0-9]{1,20}+$/ has no method 'test'

Any ideas? Additionally this within a node.js environment.

Share Improve this question edited Jul 24, 2011 at 21:20 bradley asked Jul 24, 2011 at 20:59 bradleybradley 7762 gold badges11 silver badges30 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 3

That method is undefined because that's not a regex but a string.

You need to drop the quotes in order to create a RegExp object in javascript:

var regex = /^[1,0]{1}+$//^[0-9]{1,20}+$/;

Anyway I don't think that's a valid regex (because of the double slashes) you might wanna check for typos there...

A regex to check for a number between 1 and 20 digits is just:

var regex = /^\d{1,20}$/

try to remove single quotes from your regex

var value = 077283331111333;
var regex = /^[1,0]{1}+$//^[0-9]{1,20}+$/;
var match = regex.test(value);
if ( ! match) {
    console.log(value + 'is not a number that has between 1,20 digits');
}

try remove the quotes from regex variable.

if ( /regex/.match( value ) ) {
  //do stuff
}

That's one odd regexp... why don't you use
/^\d{1,20}$/.test(value)

发布评论

评论列表(0)

  1. 暂无评论