Jump to content

Search the Community

Showing results for tags 'regexp au3 func'.

  • 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'm working on some additions for SciTE Jump and for some reason I can't seem to remove functions from the script file. Run the code below and you will see functions that only have one set of ( and ) work, otherwise if fails. I tried inverting the "greediness" but to no avail. Thanks. #include <Constants.au3> Local $sData = FileRead(@ScriptFullPath) $sData = StringRegExpReplace($sData, "([""']).*?\1", "''") ; Strip string literals. By PhoenixXL. MsgBox($MB_SYSTEMMODAL, '', StringRegExpReplace($sData, '\w+\([^)]*\)', ''), 5) ; <<< This shouldn't be here. Nested functions don't work. ClipPut(StringRegExpReplace($sData, '\w+\([^)]*\)', '')) StringLeft(StringInStr(StringMid('', '', 0), 'Blah', 0), 2) ; << This shouldn't be here either. Func Example($iType, _ $iValue = Default) StringMid('', 10) Example(10, 100) Return True EndFunc ;==>Example
×
×
  • Create New...