Python Regex: How To Split a String On Multiple Characters

Python Regex: How To Split a String On Multiple Characters

Channel:
Subscribers:
53,100
Published on ● Video Link: https://www.youtube.com/watch?v=JIEmM87RlT8



Category:
Guide
Duration: 2:03
12,129 views
193


↓ Code Available Below! ↓

This video shows how to split a string of text based on multiple characters at the same time using the regular expressions package in Python. Splitting strings into parts, often into different words, is a common text processing operation but the base Python split function only splits on a single separator, so if your words are separated by several characters it might not get you what you need. The re.split() function allows you to split on a regular expression pattern, so you can split on multiple characters at the same time.

If you find this video useful, like, share and subscribe to support the channel!
► Subscribe: https://www.youtube.com/c/DataDaft?sub_confirmation=1


Code used in this Python Code Clip:

import re

lines = '''Some-files_have+different.characters as|separators'''

# Default python split works on a single character
lines.split()

# Use re.split() to split on several different characters
re.split(pattern = r"[-_\|\.\+ ]",
string = lines)


* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones. .


⭐ Kite is a free AI-powered coding assistant that integrates with popular editors and IDEs to give you smart code completions and docs while you’re typing. It is a cool application of machine learning that can also help you code faster! Check it out here: https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=datadaft&utm_content=description-only







Tags:
python split on multiple characters
python split
re.split
re.split()
python regex
python match
python text processing
python regular expressions
python re
python text data
text data
regular expressions
regex
text processing
python split strings
split string into words
split on multiple characters
split on many characters at the same time
string processnig
strings python
string to words
python extract words
list of words
bag of words