CSE :: Javascript - CS
-
Consider the following statement containing regular expressions
var text = "testing: 1, 2, 3";
var pattern = /d+/g;
In order to check if the pattern matches, the statement is
- The regular expression to match any one character not between the brackets is
- What does /[^(]* regular expression indicate ?
- What will be the result when non greedy repetition is used on the pattern /a+?b/ ?
- What does the subexpression /java(script)?/ result in ?
- What is the most essential purpose of parantheses in regular expressions ?
- The method that performs the search-and-replace operation to strings for pattern matching is
- What would be the result of the following statement in JavaScript using regular expression methods ?
- The Crockford’s subset doesnot include which function in JavaScript?
- Why does JavaScript subset disallow == and !=?