Jump to content

Search the Community

Showing results for tags 'strings between'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. I want to parse out the actual text the is in RED color from au3 script and place it in an array, the strings between " and ' symbols SAMPLE INPUT TEXT: #include "StaticConstants.au3" ;yes this is red text, but it has to be ignored as it is path to include file #include <WindowsConstants.au3> $TEXT = " yo yo 'yo' 'yo'yo 'yo' yo' " $fnScript = 'Auto Updater; (example script);' ;full script name $pScript = StringSplit(@ScriptName, '.') $dirMonter = @AppDataDir & '\monter.FM' ;directory for monter.FM's scripts $btnIni = GUICtrlCreateButton('View ' & $script & '.&ini', 4, 164, 115, 25) $btnFilUpd = GUICtrlCreateButton('View ' & $script & '.&upd', 126, 164, 119, 25) $YO = "hey'" & @TAB & '' & "" & '"' & "'world." ; tough one OUTPUT ARRAY: $array[0] => 8 $array[1] => "yo yo 'yo 'yo'yo 'yo' yo" $array[2] => 'Auto Updater; (example script);' $array[3] => '.' $array[4] => '\monter.FM' $array[5] => 'View ' $array[6] => '.&ini' $array[7] => 'View ' $array[8] => '.&upd' $array[9] => $array[10] => "hey'" $array[11] => '' $array[12] => "" $array[13] => '"' $array[14] => "'world." How this can be achieved, would be glad if anyone provide me with actual solution
×
×
  • Create New...