Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

184
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda