If we have string HelloWorld and we want the following:
1) Find the a match when the string Hello World starts with the word Hello on a condition the word World is attached to the word Hello.
^(?i:Hello)
Where:
^ matches the beginning of a string or line.
( Starts a group.
?i: Ignore Case.
) Close of group.