since we escaped * it has lost its special meaning and is just a litteral * so the regex says:

start of the string followed by an *.
"*hello you!" is true
"hello *you!" is false because the first character in the string is an "h".


$maybe