Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

code in python please Preliminaries For this lab you will be working with regular expressions in Python. Various functions for working with regular expressions are

image text in transcribedimage text in transcribedimage text in transcribedcode in python please

Preliminaries For this lab you will be working with regular expressions in Python. Various functions for working with regular expressions are available in the re module. Fortunately, Python makes it pretty easy to see if a string matches a particular pattern At the top of the file we must import the re module: import re Then we can use the search () function to test whether a string matches a pattern. In the example below, the regular expression has been saved in a string called pattern for convenience: phone123-456-7890' if re.search (pattern, phon else: e): print The string matches the pattern.' print ('The string does not match the pattern.') CSE 101 - Spring 2018 Lab #13 Page 1 The r that precedes the pattern string is not a typo. Rather, the r indicates that the string is a "raw" string. In a raw string, as opposed to a "normal" string, any backslash character is interpreted as simply a backslash, as opposed to defining an escape sequence like or \t. Make sure you use raw strings in your Python code when defining regular expressio The * and $ at the beginning and end of the regular expression indicate that the entire string must match the regular expression, and not just part of the string. Make sure you include these symbols in your regular expressions too

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Records And Database Management

Authors: Jeffrey R Stewart Ed D, Judith S Greene, Judith A Hickey

4th Edition

0070614741, 9780070614741

More Books

Students also viewed these Databases questions