pyspark.pandas.Series.str.startswith¶
-
str。
startswith
( 模式:str,na:可選(任何]=沒有一個 )→pyspark.pandas.series.Series¶ -
測試每個字符串元素匹配模式的開始。
- 參數
-
- 模式 str
-
字符序列。正則表達式是不會被接受的。
- na 對象,默認沒有
-
如果元素沒有一個字符串對象顯示。南轉化為沒有。
- 返回
-
- 一係列的布爾值或對象
-
pandas-on-Spark係列的布爾值指示是否給定的模式匹配每個字符串元素的開始。
例子
> > >年代=ps。係列([“蝙蝠”,“熊”,“貓”,np。南])> > >年代0蝙蝠1熊2隻貓3沒有dtype:對象
> > >年代。str。startswith(“b”)0真實1假2錯誤3沒有dtype:對象
指定na是假的,而不是沒有。
> > >年代。str。startswith(“b”,na=假)0真實1假2錯誤3錯誤dtype: bool