Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Python We often want to get the filename from a file. Using regularexpression, please extract the filename (without their fileextension) for the values found in

Python

We often want to get the filename from a file. Using regularexpression, please extract the filename (without their fileextension) for the values found in filenames. Thisfunction get_filename() should take in a string thenoutput a string.

  • You cannot use Path
  • You should assume that file extensions, if they exist, are atthe end of the line and are preceded with a period symbol(i.e. .). If a file name has periods within its name, you canassume there will be a file extension included.
  • For example, if I processed each of the following strings
    ["hello-world.txt", "/Users/wayne/Desktop/screenshot.png", "~/Downloads/file_without_exntension", "/Users/wayne/Documents/test.py", "/var/user.files/tmp/bad.file.names.csv"]
    I should get something like
    ['hello-world', 'screenshot', 'file_without_exntension', 'test', 'bad.file.names']

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Fundamental Accounting Principles

Authors: John J Wild, Ken Shaw

25th Edition

9781260247985

Students also viewed these Programming questions