Site Navigation
Section Navigation
Check if string values start with a substring.
Prefix substring.
See also
Examples
>>> s = pl.Series("fruits", ["apple", "mango", None])
>>> s.str.starts_with("app")
shape: (3,)
Series: 'fruits' [bool]
[
true
false
null
]