Answers for "remove all before a characterc in a string python"

2

How to remove all characters after character in python?

Use str. split() to remove everything after a character in a string
a_string = "ab-cd"
split_string = a_string. split("-", 1) Split into "ab" and "cd"
substring = split_string[0]
print(substring)
Posted by: Guest on August-31-2021
2

How to remove all characters after a specific character in python?

text = input()
sep = '...'
stripped = text.split(sep, 1)[0]
print(stripped)
Posted by: Guest on August-31-2021

Code answers related to "remove all before a characterc in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language