Series.str
可用於以字符串形式訪問係列的值並對其應用幾種方法。 Pandas Series.str.extractall()
函數用於提取正則表達式中的捕獲組作為DataFrame中的列。對於係列中的每個主題字符串,從正則表達式pat的所有匹配項中提取組。當係列中的每個主題字符串完全匹配一個匹配項時,extractall(pat).xs(0,level ='match')與extract(pat)相同。
用法: Series.str.extractall(pat, flags=0)
參數:
pat:具有捕獲組的正則表達式模式。
flags:一個re模塊標誌,例如re.IGNORECASE。
返回: DataFrame
範例1:采用Series.str.extractall()
函數從給定係列對象的基礎數據中的字符串中提取所有組。
# importing pandas as pd
import pandas as pd
# importing re for regular expressions
import re
# Creating the Series
sr = pd.Series(['New_York', 'Lisbon', 'Tokyo', 'Paris', 'Munich'])
# Creating the index
idx = ['City 1', 'City 2', 'City 3', 'City 4', 'City 5']
# set the index
sr.index = idx
# Print the series
print(sr)
輸出:
現在我們將使用Series.str.extractall()
函數從給定係列對象中的字符串中提取所有組。
# extract all groups having a vowel followed by
# any character
result = sr.str.extractall(pat = '([aeiou].)')
# print the result
print(result)
輸出:
正如我們在輸出中看到的,Series.str.extractall()
函數已返回一個包含所有已提取組的列的 DataFrame 。
範例2:采用Series.str.extractall()
函數從給定係列對象的基礎數據中的字符串中提取所有組。
# importing pandas as pd
import pandas as pd
# importing re for regular expressions
import re
# Creating the Series
sr = pd.Series(['Mike', 'Alessa', 'Nick', 'Kim', 'Britney'])
# Creating the index
idx = ['Name 1', 'Name 2', 'Name 3', 'Name 4', 'Name 5']
# set the index
sr.index = idx
# Print the series
print(sr)
輸出:
現在我們將使用Series.str.extractall()
函數從給定係列對象中的字符串中提取所有組。
# extract all groups having any capital letter
# followed by 'i' and any other character
result = sr.str.extractall(pat = '([A-Z]i.)')
# print the result
print(result)
輸出:
正如我們在輸出中看到的,Series.str.extractall()
函數已返回一個包含所有已提取組的列的 DataFrame 。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas Timestamp.tz用法及代碼示例
- Python Pandas Series.str.contains()用法及代碼示例
- Python Pandas dataframe.std()用法及代碼示例
- Python Pandas Timestamp.dst用法及代碼示例
- Python Pandas dataframe.sem()用法及代碼示例
- Python Pandas DataFrame.ix[ ]用法及代碼示例
- Python Pandas.Categorical()用法及代碼示例
- Python Pandas.apply()用法及代碼示例
- Python Pandas TimedeltaIndex.contains用法及代碼示例
- Python Pandas Timestamp.now用法及代碼示例
- Python Pandas Series.str.pad()用法及代碼示例
- Python Pandas Series.take()用法及代碼示例
- Python Pandas dataframe.all()用法及代碼示例
- Python Pandas series.str.get()用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Series.str.extractall()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。