temp00 Posted April 26, 2013 Posted April 26, 2013 I'm new to AutoIt, and still not familiar with its grammar. Suppose a string $s1="abcdefghijklmn", now I want to refer to a sub-string s2=s1(3 to 10), what's the right grammar in AutoIt?
PlayHD Posted April 26, 2013 Posted April 26, 2013 (edited) look to StringMid in help fileexample.$s1 = "abcdefghijklmn" $s2 = StringMid($s1,3,7) Edited April 26, 2013 by PlayHD My UDF : _WinShake, _WinSplitMy Apps : Google Guitar Bot, PuzzleGameDesign Gui : Interesting Tabs Design, RBox Project (abandoned), Animated Gui on Exit
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