×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Python program to search for regular expression in string using search() method

Here, we will see a Python program to search for regular expressions in string using search() method using search method.
Submitted by Shivang Yadav, on March 10, 2021

The regular expression in Python is a search pattern formed by a sequence of characters.

The search() method is used to search for the occurrence of regex patterns in the string.

Syntax:

regex.match(regexPattern, string, flag)

Let's take an example to understand the problem,

Input:
string = "learn python programming language at includehelp" ; pattern = '(.*) at (.*?)'

Output:
Search Item Found

Program to illustrate the working of our solution

import re

myString = "learn python programming language at includehelp"

searchObject = re.search( r'(.*) python (.*?) .* ', myString, re.M|re.I)
if searchObject:
    print("Item found! ")
else:
    print("No Item are found!")

Output:

Item found!

Python Regular Expression Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.