I want to create a regular expression that matches input text that starts with a given word and this word may be followed by 0 or more characters(any type of character).
For example if the word is
$$(hello)$$
Will the following regular expression match the above stated requirements:
^\$\$\(hello\)\$\$.*
^\$\$\(hello\)\$\$since you're checking for start of text only. – anubhava Feb 23 '12 at 19:38