用法:
StringMethods.rsplit(pat: str = None, n: int = - 1, expand: bool = None) → SeriesOrIndex
圍繞給定的分隔符/分隔符拆分字符串。
在指定的分隔符字符串處從末尾拆分係列/索引中的字符串。等效於 str.rsplit() 。
- pat:str,默認“”(空格)
要拆分的字符串,尚不支持正則表達式。
- n:int,默認 -1(全部)
限製輸出中的拆分數量。
None
、0 和 -1 都將被解釋為 “all splits”。- expand:布爾值,默認為 False
將拆分的字符串展開為單獨的列。
- 如果
True
,返回 DataFrame/MultiIndex 擴展維度。 - 如果
False
,則返回包含字符串列表的係列/索引。
- 如果
- Series、Index、DataFrame 或 MultiIndex
類型匹配調用者,除非
expand=True
(見注釋)。
參數:
返回:
注意:
n 關鍵字的處理取決於找到的拆分數量:
- 如果發現拆分 > n,則隻進行前 n 個拆分
- 如果發現拆分 <= n,則進行所有拆分
- 如果對於某一行,找到的拆分數 expand=True 。
如果使用
expand=True
,Series 和 Index 調用者分別返回 DataFrame 和 MultiIndex 對象。例子:
>>> import cudf >>> s = cudf.Series( ... [ ... "this is a regular sentence", ... "https://docs.python.org/3/tutorial/index.html", ... None ... ] ... ) >>> s 0 this is a regular sentence 1 https://docs.python.org/3/tutorial/index.html 2 <NA> dtype: object
在默認設置中,字符串由空格分隔。
>>> s.str.rsplit() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 None dtype: list
如果沒有
n
參數,rsplit
和split
的輸出是相同的。>>> s.str.split() 0 [this, is, a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 None dtype: list
n 參數可用於限製分隔符上的拆分次數。 split 和 rsplit 的輸出是不同的。
>>> s.str.rsplit(n=2) 0 [this is a, regular, sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 None dtype: list >>> s.str.split(n=2) 0 [this, is, a regular sentence] 1 [https://docs.python.org/3/tutorial/index.html] 2 None dtype: list
使用
expand=True
時,拆分元素將擴展為單獨的列。如果存在<NA>
值,則它會在拆分期間傳播到整個列。>>> s.str.rsplit(n=2, expand=True) 0 1 2 0 this is a regular sentence 1 https://docs.python.org/3/tutorial/index.html <NA> <NA> 2 <NA> <NA> <NA>
對於稍微複雜的用例,例如從 url 中拆分 html 文檔名稱,可以使用參數設置的組合。
>>> s.str.rsplit("/", n=1, expand=True) 0 1 0 this is a regular sentence <NA> 1 https://docs.python.org/3/tutorial index.html 2 <NA> <NA>
相關用法
- Python cudf.core.column.string.StringMethods.rstrip用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace用法及代碼示例
- Python cudf.core.column.string.StringMethods.replace_tokens用法及代碼示例
- Python cudf.core.column.string.StringMethods.rfind用法及代碼示例
- Python cudf.core.column.string.StringMethods.rindex用法及代碼示例
- Python cudf.core.column.string.StringMethods.rpartition用法及代碼示例
- Python cudf.core.column.string.StringMethods.repeat用法及代碼示例
- Python cudf.core.column.string.StringMethods.rjust用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
- Python cudf.core.column.string.StringMethods.endswith用法及代碼示例
- Python cudf.core.column.string.StringMethods.title用法及代碼示例
- Python cudf.core.column.string.StringMethods.contains用法及代碼示例
- Python cudf.core.column.string.StringMethods.zfill用法及代碼示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代碼示例
- Python cudf.core.column.string.StringMethods.htoi用法及代碼示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代碼示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代碼示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代碼示例
- Python cudf.core.column.string.StringMethods.split用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.rsplit。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。