Run »
×
Change Orientation
import re txt = "hello world" #Check if the string starts with 'hello': x = re.findall("^hello", txt) if x: print("Yes, the string starts with 'hello'") else: print("No match")
Yes, the string starts with 'hello'
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit