Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

178
Views
Trim specific leading and trailing characters from a string

I have a string that contains a path

str = "/example/path/with/different/trailing/delimiter\"

and I want to trim the leading and trailing / and \. What is the best practice in Python 3?

Currently I'm using

trimmedPath = str.strip("/\\")
# trimmedPath is "example/path/with/different/trailing/delimiter" as desired

Two questions:

  1. Is this the best trim function for trimming specific characters in Python 3?
  2. Are there specific path functions for such operations in Python 3 so I don't have to set the delimiters manually?
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

I believe strip is the pythonic way. It is usually the case when there is a builtin function.

There are a few builtin path manipulators available in the os library. You might want to use them if one of the manipulators is a match for your use case.

over 4 years ago · Santiago Trujillo Report

0

Example of strip() in action; in this case, removing a leading plus sign:

In [1]: phone_number = "+14158889999"

In [2]: phone_number.strip('+')
Out[2]: '14158889999'
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!