Jump to content

string help


Recommended Posts

how to do with this:

N:\QUAKE3\QUAKE3.EXE

change to :

N:\QUAKE3\QUAKE3.EXE N:\QUAKE3

N:\QUAKE3\abc\QUAKE3.EXE

change to:

N:\QUAKE3\abc\QUAKE3.EXE N:\QUAKE3\abc

I just want to delete the last string after "\",but I don't know how to do. :) anybody help me?

Link to comment
Share on other sites

how to do with this:

N:\QUAKE3\QUAKE3.EXE

change to :

N:\QUAKE3\QUAKE3.EXE N:\QUAKE3

N:\QUAKE3\abc\QUAKE3.EXE

change to:

N:\QUAKE3\abc\QUAKE3.EXE N:\QUAKE3\abc

I just want to delete the last string after "\",but I don't know how to do. :) anybody help me?

Look up _PathSplit() in the help file:
#Include <File.au3>

Global $avInputs[3] = ["N:\QUAKE3\QUAKE3.EXE", "N:\QUAKE3\abc\QUAKE3.EXE", "C:\My Dir\My Sub Dir\My File.ext"]
Global $sDir, $sDrive, $sExt, $sFName

For $n = 0 to UBound($avInputs) - 1
    _PathSplit($avInputs[$n], $sDrive, $sDir, $sFName, $sExt)
    $sOutput = StringTrimRight($sDrive & $sDir, 1); Remove trailing "\"
    ConsoleWrite($n & ": _PathSplit() = " & $sOutput & @LF)
Next

:party:

Edit: Unless you want the clean, efficient, one-line answer (but who wants that?)... then you go with Authenticity's.

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...