Problem 2625. Shorten pathname
Given a pathname string, return a condensed version by replacing intermediate folders with '..'.
Example
If
fullpath = 'C:\foo\bar\baz\qux';
then
shortpath = 'C:\..\qux';
Solution Stats
Problem Comments
-
1 Comment
goc3
on 27 Sep 2017
Additional test cases have been added.
Solution Comments
Show commentsProblem Recent Solvers82
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2775 Solvers
-
Determine the number of odd integers in a vector
792 Solvers
-
Append two matrix as shown below example
231 Solvers
-
702 Solvers
-
395 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!