OloEopia Posted February 8, 2010 Posted February 8, 2010 Hello I have a problem: I want to split a string with stringsplit as delimiter I wante to use tabulator. What I have to paste that it works? {tab} wont work? I use v3.2.12.1 because I work with win98 greets Olo
JohnOne Posted February 8, 2010 Posted February 8, 2010 Do you mean you want to use StringSplit() and use a {TAB} character as the deliminator ? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
99ojo Posted February 8, 2010 Posted February 8, 2010 Hi, $string = "my test" $var = Stringsplit ($string, Chr (9), 2) MsgBox (0, "", $var [0] & @CRLF & $var [1]) ;-)) Stefan
OloEopia Posted February 8, 2010 Author Posted February 8, 2010 yes hat was my problem perfekt thank you but with $var = Stringsplit ($string, Chr (9), 2) it doesent work it works when i set the flag 0
JohnOne Posted February 8, 2010 Posted February 8, 2010 you probably want to use "1"flag = 1, entire delimiter string is needed to mark the split AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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