There are different approaches you can take to make your Python code search within a string:
string = "This is a sample string"
substring = "sample"
if substring in string:
print("Substring found.")
else:
print("Substring not found.")
Output: Substring found.
find()
method returns the lowest index of the substring if it is found in the string, and -1 if it is not found. Here's an example:string = "This is a sample string"
substring = "sample"
index = string.find(substring)
if index != -1:
print("Substring found at index ", index)
else:
print("Substring not found.")
Output: Substring found at index 10
re
module provides a powerful way to search for patterns within strings using regular expressions. Here's an example:import re
string = "This is a sample string"
pattern = r'sample'
matches = re.findall(pattern, string)
if matches:
print("Substring found ", matches)
else:
print("Substring not found.")
Output: Substring found ['sample']
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2022-11-04 11:00:00 +0000
Seen: 7 times
Last updated: Nov 20 '21
How can I set up Gunicorn with a Django Project?
Looking for a Python Module that finds Tags for a Text describing its Content
Need a Function in Python to remove entries less than 2 digits from an Array
How can I convert a Document in Python?
How can I program a Loop in Python?
How can I enable Python Code Highlighting in Askbot?