Lempke Posted November 10, 2006 Posted November 10, 2006 This my script: #include <Array.au3> $LastName = "Smith-Gates" $String_MN = StringSplit($LastName, "-") If $String_MN > 1 Then $LastName = ($String_MN[1]) $MaidenName = ($String_MN[2]) EndIf It doesn't work with the IF statement. Without the IF statement it works fine
herewasplato Posted November 10, 2006 Posted November 10, 2006 try:If $String_MN[0] > 1 Then [size="1"][font="Arial"].[u].[/u][/font][/size]
Lempke Posted November 10, 2006 Author Posted November 10, 2006 try:If $String_MN[0] > 1 Then Whaaaaaaa...... First time Array user THX
herewasplato Posted November 10, 2006 Posted November 10, 2006 ...First time Array user ...I stayed away from them for quite a while... From the help file under StringSplit:Returns an array, the first element ($array[0]) contains the number of strings returned...... have fun [size="1"][font="Arial"].[u].[/u][/font][/size]
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