รหัสต่อไปนี้ตรงกับคำว่า 'เชียร์' ที่ต้นสตริง ' ผู้นำเชียร์ที่สนามฟุตบอล'
^-จับคู่จุดเริ่มต้นของสตริง
ตัวอย่าง
import re s = 'cheer leaders at the football stadium' result = re.search(r'^\w+', s) print result.group()
ผลลัพธ์
ให้ผลลัพธ์
cheer
รหัสต่อไปนี้ตรงกับคำว่า 'เชียร์' ที่ต้นสตริง ' ผู้นำเชียร์ที่สนามฟุตบอล'
^-จับคู่จุดเริ่มต้นของสตริง
import re s = 'cheer leaders at the football stadium' result = re.search(r'^\w+', s) print result.group()
ให้ผลลัพธ์
cheer