forked from Rust-related/RustPython
9 lines
90 B
Python
9 lines
90 B
Python
|
|
import re
|
|
|
|
haystack = "Hello world"
|
|
needle = 'ello'
|
|
|
|
print(re.search(needle, haystack))
|
|
|