Hi Chris,
You're right, i'll be more complete :
1) If you want the test to be case insensitive you have to lowercase both tested string and text pattern :
Match(Lower(ls_Test), "first part.*second part")
2) Be aware that if your "First Part" or "Second Part" strings contain special characters like +*?[]\.^$, then you have to put a backslash before those characters.
Guillaume