This works (verified by testing):
match(test_text, "First Part.*Second Part")
The ".*" in the middle will match one or more characters until it gets to end of string (no match) or it finds "Second Part" (match).
This works (verified by testing):
match(test_text, "First Part.*Second Part")
The ".*" in the middle will match one or more characters until it gets to end of string (no match) or it finds "Second Part" (match).