Jump to content

Recommended Posts

Posted

Hello!

Please help me help with regular expressions.

For example, i need to parse AutoIt function declaration and extract function and parameters names. In sample below StringRegExp() returns function name and last parameter. It is possible get all parameters with one call?

#include <Array.au3>

Global $sTest = "  Func NNN ( $XXX, $yyy )   "
Global $sPattern = "^\s*(?:(?i)func)\s+(\w+)(?:[^\$]*(\$\w+))*"

Global $aResult = StringRegExp( $sTest, $sPattern, 1 )

_ArrayDisplay( $aResult )

 

Posted (edited)

How about: 

(?:^|\s)(\$\w+)

any word beginning with space $

And get the function name first...

(?<=Func\s)(\w+)|(?:^|\s)(\$\w+)

Edited by SlackerAl
Added function name

Problem solving step 1: Write a simple, self-contained, running, replicator of your problem.

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
  • Recently Browsing   0 members

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