search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

PySpark SQL Functions | regexp_extract method

schedule Aug 12, 2023
Last updated
local_offer
PySpark
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

PySpark SQL Functions' regexp_extract(~) method extracts a substring using regular expression.

Parameters

1. str | string or Column

The column whose substrings will be extracted.

2. pattern | string or Regex

The regular expression pattern used for substring extraction.

3. idx | int

The group from which to extract values. Consult the examples below for clarification.

Return Value

A new PySpark Column.

Examples

Consider the following PySpark DataFrame:

df = spark.createDataFrame([['id_20_30', 10], ['id_40_50', 30]], ['id', 'age'])
df.show()
+--------+---+
| id|age|
+--------+---+
|id_20_30| 10|
|id_40_50| 30|
+--------+---+

Extracting a specific substring

To extract the first number in each id value, use regexp_extract(~) like so:

from pyspark.sql import functions as F
df.select(F.regexp_extract('id', '(\d+)', 1)).show()
+----------------------------+
|regexp_extract(id, (\d+), 1)|
+----------------------------+
| 20|
| 40|
+----------------------------+

Here, the regular expression (\d+) matches one or more digits (20 and 40 in this case). We set the third argument value as 1 to indicate that we are interested in extracting the first matched group - this argument is useful when we capture multiple groups.

Extracting the n-th captured substring

We can use multiple (~) capture groups for regexp_extract(~) like so:

from pyspark.sql import functions as F
df.select(F.regexp_extract('id', '(\d+)_(\d+)', 2)).show()
+----------------------------------+
|regexp_extract(id, (\d+)_(\d+), 2)|
+----------------------------------+
| 30|
| 50|
+----------------------------------+

Here, we set the third argument value to 2 to indicate that we are interested in extracting the values captured by the second group.

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
7
thumb_down
1
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!