You are on page 1of 1

(.

*)[^(\d{1,}\s*m)]$
Customizing a Recorded Office Scrip
Identification of Issues in a Recorded Script 4m
Customizing a Recorded Office Script
Identification of Issues in a Recorded Script 4m
Customizing a Recorded Office Script
Identification of Issues in a Recorded Script 4m
Customizing a Recorded Office Scrip
Identification of Issues in a Recorded Script 4m
Customizing a Recorded Office Script
Identification of Issues in a Recorded Script 4m
Customizing a Recorded 1m Office Script
Identification of Issues in a Recorded Script 4m
Customizing a Recorded Office Script
Identification of Issues in a Recorded Script 4m

Lookaround Name What it Does


(?=foo) Lookahead Asserts that what immediately follows the current
position in the string is foo (match characters เฉพาะที่นำหน้า foo แตไ่ มเ่ อา foo)
(?<=foo) Lookbehind Asserts that what immediately precedes the
current position in the string is foo
(?!foo) Negative Lookahead Asserts that what immediately follows the
current position in the string is not foo (match characters เฉพาะที่ไมไ่ ปนำหน้า foo)
(?<!foo) Negative Lookbehind Asserts that what immediately precedes
the current position in the string is not foo

foobar
barfoo
foofoox
barfooxxx

(.*)(?=foo)
(?=foo)(.*)

(.*)(?<=foo)
(?<=foo) (.*)

(.*)(?!foo)
(?!foo) (.*)

(.*)(?<!foo)
(?<!foo)(.*)

You might also like