I have a string that contains a path of a folder:
C:\MyFolder\MyApp\Example
The question is, how I cut the last element of string so it should like this:
C:\MyFolder\MyApp
Could you send me an example, if you can?
Printable View
I have a string that contains a path of a folder:
C:\MyFolder\MyApp\Example
The question is, how I cut the last element of string so it should like this:
C:\MyFolder\MyApp
Could you send me an example, if you can?
left$(yourstring, ReverseFind(your string,"\",len(your string)))