We use the dot (.) operator followed by either a * or a +. The + tells the regular expression that there will be instances between "0" and "n", while the * tells the regular expression that there will be instances between "1" and "n".

Options
- True
- False


CORRECT ANSWER : False

Discussion Board
Selenium

Answer: False

Solution: Regular expression is used for searching text or value on the page. We use +, *, dot, [] character for searching values.
*: 0 or more of the preceding character.
+: 1 or more of the preceding character.
Therefore, false is the correct answer.


Rohit Srivastava 07-28-2014 05:10 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement