User Tools

Site Tools


vba:tutorials:regexptest

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
vba:tutorials:regexptest [14.09.2017 11:32:43]
yaslaw [[VBA] RegExp testen im Direktfenster]
vba:tutorials:regexptest [14.09.2017 11:33:39] (current)
yaslaw [Patterns bei cRegExp()]
Line 34: Line 34:
 <code vb>'​Der Pattern ^([^\d]*[\.a-z])\s*(.*) mit dem Modifier IgnoreCase <code vb>'​Der Pattern ^([^\d]*[\.a-z])\s*(.*) mit dem Modifier IgnoreCase
 print_r cregexp("/​^([^\d]*[\.a-z])\s*(.*)/​i"​).execute("​Haupt-Str. 11a") print_r cregexp("/​^([^\d]*[\.a-z])\s*(.*)/​i"​).execute("​Haupt-Str. 11a")
 +<​IMatchCollection2> ​ (
 +    [0] => <​IMatch2> ​ (
 +        [Match] => <​String>​ '​Haupt-Str. 11a'
 +        [FirstIndex] => <​Long>​ 0
 +        [SubMatches] => <​ISubMatches> ​ (
 +            [0] => <​String>​ '​Haupt-Str.'​
 +            [1] => <​String>​ '​11a'​
 +        )
 +    )
 +)
 +
 +'Mit dRx()
 +dRx "/​^([^\d]*[\.a-z])\s*(.*)/​i",​ "​Haupt-Str. 11a"
 <​IMatchCollection2> ​ ( <​IMatchCollection2> ​ (
     [0] => <​IMatch2> ​ (     [0] => <​IMatch2> ​ (
vba/tutorials/regexptest.1505381563.txt.gz · Last modified: 14.09.2017 11:32:43 by yaslaw