Arclite86 Posted November 3, 2014 Posted November 3, 2014 this is the variable: $tekst = ("C:\Users\joesoef pc\Desktop\autoit\program\lijst\lijst2\August") I would like to remove the last word August. How can i do this?
Spider001 Posted November 3, 2014 Posted November 3, 2014 https://www.autoitscript.com/autoit3/docs/libfunctions/_PathSplit.htm
Moderators Melba23 Posted November 3, 2014 Moderators Posted November 3, 2014 Arclite86,What have you tried that has not worked? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Arclite86 Posted November 3, 2014 Author Posted November 3, 2014 (edited) If i check this script: #include <Array.au3> #include <File.au3> Local $sDrive = "", $sDir = "", $sFilename = "", $sExtension = "" Local $aPathSplit = _PathSplit(@ScriptFullPath, $sDrive, $sDir, $sFilename, $sExtension) _ArrayDisplay($aPathSplit, "_PathSplit of " & @ScriptFullPath) it builds the variable and than splits it, if im right but I got a variable $tekst = ("C:\Users\joesoef pc\Desktop\autoit\program\lijst\lijst2\August") that is already made So i need something like $newtext = $tekst- ("august") or something like that Edited November 3, 2014 by Arclite86
Moderators Melba23 Posted November 3, 2014 Moderators Posted November 3, 2014 Arclite86,I ask again - what have you tried that has not worked? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Spider001 Posted November 3, 2014 Posted November 3, 2014 _PathSplit give you a array https://www.autoitscript.com/wiki/Arrays
Arclite86 Posted November 3, 2014 Author Posted November 3, 2014 this $newtext = $tekst- ("august") and and i remember somthing like this: $newtext = ($tekst |<august>|) but its not the right one
Moderators Melba23 Posted November 3, 2014 Moderators Posted November 3, 2014 Arclite86,Do you want to remove "August" as specific text - or remove any characters that might follow the final ""? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Spider001 Posted November 3, 2014 Posted November 3, 2014 do you see your awnser at this window when you run your script _ArrayDisplay($aPathSplit, "_PathSplit of " & @ScriptFullPath) yes => https://www.autoitscript.com/wiki/Arrays no => i don't understand the question then
Arclite86 Posted November 3, 2014 Author Posted November 3, 2014 Arclite86, Do you want to remove "August" as specific text - or remove any characters that might follow the final ""? M23 I only want to remove the specific text Augustus from the variable
Moderators Solution Melba23 Posted November 3, 2014 Moderators Solution Posted November 3, 2014 Arclite86,Then StringReplace is what you need. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Spider001 Posted November 3, 2014 Posted November 3, 2014 #include <Array.au3> #include <File.au3> $tekst = ("C:Usersjoesoef pcDesktopautoitprogramlijstlijst2August") Local $sDrive = "", $sDir = "", $sFilename = "", $sExtension = "" Local $aPathSplit = _PathSplit($tekst, $sDrive, $sDir, $sFilename, $sExtension) _ArrayDisplay($aPathSplit, "_PathSplit of " & $tekst) MsgBox(0,'',$aPathSplit[1] & $aPathSplit[2])
Jochem Posted November 3, 2014 Posted November 3, 2014 #include <Array.au3> #include <File.au3> global $sFilePath = ("C:\Users\joesoef pc\Desktop\autoit\program\lijst\lijst2\August") global $sDrive = "", $sDir = "", $sFilename = "", $sExtension = "" global $aPathSplit = _PathSplit($sFilePath, $sDrive, $sDir, $sFilename, $sExtension) consolewrite($sDrive & $sDir & @LF)
Jochem Posted November 3, 2014 Posted November 3, 2014 consolewrite(stringtrimright("C:\Users\joesoef pc\Desktop\autoit\program\lijst\lijst2\August", 6) & @LF)
Arclite86 Posted November 3, 2014 Author Posted November 3, 2014 I already got it thank Melba23 $newfile = StringReplace($file, "August", "")
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now