Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How do you pass a variable to a Regular Expression JavaScript?

I need help to resolve the issue because the code fails due to numLength[0]:

<html>
<body>

<script type="text/javascript">
function xyz(){
var predefLength = "5,5";
var number = "20";
var numLength = predefLength.split(",");
var result = /^[-+]?\d{0,numLength[0]}(\.\d{0,numLength[1]})?$/.test(number);
document.write(result);
}
</script>

</body>
</html>

Any help will appreciated.

share|improve this question

marked as duplicate by Felix Kling, Yoshi, Yi Jiang, outis, Matt Mar 29 '12 at 8:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Use the RegExp-constructor, like:

var pattern = new RegExp('pattern as a string', 'flags as a string');

Or:

var result = new RegExp('^[-+]?\d{0,' + numLength[0] + '}(\.\d{0,' + numLength[1] + '})?$').test(number);
share|improve this answer
Exactly. Regular expression literals can't be concatenated with string literals. – Filip Dupanović Dec 20 '11 at 11:20

try this:

<script type="text/javascript">
function xyz(){
var predefLength = "5,5";
var number = "20";
var numLength = predefLength.split(",");

var pattern = new RegExp('^[-+]?\\d{0,'+numLength[0]+'}(\\.\\d{0,'+numLength[1]+'})?$');
var result = pattern.test(number);
document.write(result);
}
</script>
share|improve this answer

numLength[0] is 5. We can not add evaluation of variable in regular expression. Below code returns true.

var result = /^[-+]?\d{0,x}(\.\d{0,5})?$/.test(number);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.