I have a string looks like this
urse/project/kb/use.js
from this string i need to get
urse/project/kb/
use.js the name will always change except .js.
Or delete the string till the first / from the end?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Python has a dedicated module for dealing with file paths:
Append a trailing
os.sepas required (or, better yet, stick to using theos.pathmodule for manipulating paths).