match
Service icon

Match

Stable version 1.0.2 (Compatible with OutSystems 11)
Uploaded
 on 08 December 2022
 by 
0.0
 (0 ratings)
match

Match

Documentation
1.0.2

Options


  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Pattern: Pattern to search in Text.
    • Replace: List with index to get an occurrence, ex: $1 number is a index in capture at regexp.


  • Output Parameter
    • Groups: Return a list of captures according to the replacement list.
    • ResultText: Return a text captured with regexp. 


  • How Its work?
    • The match method returns a match between a string and a regular expression.
    • Capture the sentence using expression. regular, without external method.


Options


  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Patterns: List with regex.

 

  • Output Parameter
    • Groups: Returns a list of matches captured in the regular expression.
    • Result: Return a list captured with match separated by pipe.


  • How its work?
    • The multi match method returns a multi-matched list between a string and a regular expression.


Options

 

  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Pattern: Pattern to search in Text.
    • MaxReplace: Car Max occorenc found in pattern to capture result.

 

  • Output Parameter
    • Groups: Return a list of captures according to the replacement list.
    • ResultText: Return a text captured with regexp.

 

  • How its works?
    • The match method returns a match between a string and a regular expression, and I was able to do multiple groups in just one regular expression.

1.0.1

Options


  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Pattern: Pattern to search in Text.
    • Replace: List with index to get an occurrence, ex: $1 number is a index in capture at regexp.


  • Output Parameter
    • Groups: Return a list of captures according to the replacement list.
    • ResultText: Return a text captured with regexp. 


  • How Its work?
    • The match method returns a match between a string and a regular expression.
    • Capture the sentence using expression. regular, without external method.


Options


  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Patterns: List with regex.

 

  • Output Parameter
    • Groups: Returns a list of matches captured in the regular expression.
    • Result: Return a list captured with match separated by pipe.


  • How its work?
    • The multi match method returns a multi-matched list between a string and a regular expression.

1.0.0

Options


  • Input Parameter
    • Text: Text in which to search for a Pattern.
    • Pattern: Pattern to search in Text.
    • Replace: List with index to get an occurrence, ex: $1 number is a index in capture at regexp.


  • Output Parameter
    • Groups: Return a list of captures according to the replacement list.
    • ResultText: Return a text captured with regexp. 


  • How Its work?
    • The match method returns a match between a string and a regular expression.
    • Capture the sentence using expression. regular, without external method.