Change language

Python | Pandas Series.str.extract ()

Series.str can be used to access the values ​​of a series as strings and apply multiple methods to it. Series.str.extract() Pandas Series.str.extract() is used to extract capture groups in regular expression as columns in a DataFrame. For each subject line in the Series, extract the groups from the first match of the regular expression pat .

Syntax: Series.str.extract (pat, flags = 0, expand = True)

Parameter:
pat: Regular expression pattern with capturing groups.
flags: int, default 0 (no flags)
expand: If True, return DataFrame with one column per capture group.

Returns : DataFrame or Series or Index

Example # 1: Use Series.str.extract () to extract groups from a string in the underlying data of this series object.

# import pandas as pd

import pandas as pd

 
# re import for regular expressions

import re

 
# Create series

sr = pd.Series ([ ’New_York’ , ’Lisbon’ , ’ Tokyo’ , ’Paris’ , ’Munich’ ])

  
# Create index

idx = [ ’City 1’ , ’ City 2’ , ’ City 3’ , ’City 4’ , ’City 5’ ]

  
# set index

sr.index = idx

 
# Print series

print (sr)

Output:

We will now use Series.str.extract () to extract groups from strings in a given series object.

# fetch groups, I have vowels followed by
# any character

result = sr. str . extract (pat = ’([aeiou].)’ )

 
# print result

print (result)

Output:

As we can see from the output, Series.str.extract () returned a data frame containing the column of the extracted group.

Example # 2: Use Series.str.extract () to extract groups from a string in the underlying data of a given series object.

< table border = "0" cellpadding = "0" cellspacing = "0">

# import pandas as pd

import pandas as pd

 
# re import for regular expressions

import re

 
# Create a series

sr = pd.Series ([ ’Mike’ , ’ Alessa’ , ’Nick’ , ’ Kim’ , ’Britney’ ])

 
# Create index

idx = [ ’Name 1’ , ’ Name 2’ , ’Name 3’ , ’Name 4’ , ’ Name 5’ ]

 
# set index

sr.index = idx

  
# Print series

print (sr)

Exit :

< p> We will now use Series.str.extract () to extract groups from strings in a given series object.

# retrieve groups containing capital letters
# followed by & # 39; i & # 39; and any other character

result = sr . str . extract (pat = ’([AZ] i.)’ )

  
# print the result

print (result )

Output:

As we can see from the output, Series.str.extract () returned a data frame containing the column of the extracted group.

Shop

Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best laptop for development

$499+
Gifts for programmers

Best laptop for Cricut Maker

$299+
Gifts for programmers

Best laptop for hacking

$890
Gifts for programmers

Best laptop for Machine Learning

$699+
Gifts for programmers

Raspberry Pi robot kit

$150

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers

News


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically