Jump to content

Where is StringRegExp() ?


Buffo
 Share

Recommended Posts

Hi,

i don't see StringRegExp() in the new 3.2.0 anymore. Is this correct?

It's not mentioned in the help file and the actual Scite highlighter set doesn't show it, too.

How to work with, I need it :">

I hope I am blind :P

Regards,

Buffo

Link to comment
Share on other sites

Not in mine...?

Randall

requires BETA

Local $sPattern, $sTest, $vResult, $nFlag

$sPattern = InputBox("StringRegExp Sample", "What is the pattern to test?")
$sTest = InputBox("StringRegExp Sample", "What is the line to test?")
$vResult = StringRegExp($sTest, $sPattern)
Select
Case @Error = 2 
    ; Error.  The pattern was invalid.  $vResult = position in $sPattern where error occurred.
Case @Error = 0
   if @Extended  Then
      ; Success.  Pattern matched.  $vResult matches @Extended
   Else
      ; Failure.  Pattern not matched.  $vResult = ""
   EndIf
EndSelect

$sPattern = InputBox("StringRegExp Sample", "What is the pattern to test?")
$sTest = InputBox("StringRegExp Sample", "What is the line to test?")
$nFlag = InputBox("StringRegExp Sample", "What flag to use?  0 - true/false, 1 - single pattern array return, 3 - global pattern array return")
$vResult = StringRegExp($sTest, $sPattern, $nFlag)
Select
Case @Error = 1 
   ; Error.  Flag is bad.  $vResult = ""
Case @Error = 2 
    ; Error.  The pattern was invalid.  $vResult = position in $sPattern where error occurred.
Case @Error = 0
   if @Extended  Then
      ; Success.  Pattern matched.  $vResult has the text from the groups or true (1), depending on flag. 
   Else
      ; Failure.  Pattern not matched.  $vResult = "" or false (0), depending on flag.
   EndIf
EndSelect
Edited by aceloc

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

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...