Skullman Posted August 11, 2009 Posted August 11, 2009 Hello, I would like to iterate through the tokens of a String. Is there a kind of a String tokenizer to do this or does anyone knows a workaround? Thx in advance
Authenticity Posted August 11, 2009 Posted August 11, 2009 So it's just StringSplit() ~wrapper or something. If the delimiter in Java is regexp-aware you won't win this candy in AutoIt's StringSplit() but will need to use StringRegExp() with an appropriate pattern to replicate the splitting action. In other word matching between delimiter as opposed to StringSplit() which is splitting by a delimiter.
Skullman Posted August 11, 2009 Author Posted August 11, 2009 Yep, that should do the job! Thanks >_<.
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