xAx Posted February 3, 2009 Posted February 3, 2009 Hi How can I get an item from the string below when I only have the separator character and the number of the item? $string = "item1#item2#item3#item4#item5#" For example I want to get the third item. Thanks Abduljabbar
DaRam Posted February 3, 2009 Posted February 3, 2009 Read up on StringSplit and Arrays #Include <Array.au3>; Only Required for _ArrayDisplay $string = "item1#item2#item3#item4#item5#" $aString = StringSplit($string, "#") $ThirdItem = $aString[3] _ArrayDisplay($aString, "$aString Array") Hi How can I get an item from the string below when I only have the separator character and the number of the item? $string = "item1#item2#item3#item4#item5#" For example I want to get the third item. Thanks Abduljabbar
KaFu Posted February 3, 2009 Posted February 3, 2009 $string = "item1#item2#item3#item4#item5#" $array = StringSplit ($string,'#') MsgBox(0,'',$array[0] & ' Items in String' & @crlf & @crlf & 'Item 3: ' & $array[3]) OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2025-May-18) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
xAx Posted February 3, 2009 Author Posted February 3, 2009 (edited) Thanks you both Edited February 3, 2009 by xAx
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