Jump to content

simple string match string - what am i missing?


 Share

Recommended Posts

I have not touched AutoIT for a few months and think I am missing something very basic here as its not matching when it finds the same string result: iso iso

Dim $a = StringSplit("microsoft.windows.7-professional-x86.iso", ".")   ;example of file listing
Dim $b = StringSplit("zip, rar, cab, iso", ",")                         ;supported extensions
Dim $xtn = $a[$a[0]]                                                    ;will find/display ISO

For $x = 1 To $b[0]
    If $xtn = $b[$x] Then MsgBox(0, "", "Extension: " & $xtn & @CRLF & "Match: " & $b[$x])
Next
Link to comment
Share on other sites

Your string in $b[$x] is not "iso", it's " iso". Either declare the array without the spaces or do a StringTrimWS() on it.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

You could also just run it through a RegExp for more geeky goodness:

Global $aFiles[5] = ["Test.me.zip", "File.for.testing.rar", "One More - File .cab", "microsoft.windows.7-professional-x86.iso", "NonMatch.exe"]
For $n = 0 To UBound($aFiles) - 1
    If StringRegExp($aFiles[$n], "(\.zip|\.rar|\.cab|\.iso)\Z", 0) Then
        ConsoleWrite($n & ": Match" & @LF)
    Else
        ConsoleWrite($n & ": No match" & @LF)
    EndIf
Next

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...