Search notes:

PowerShell module regex, function select-regex

Examples for the function select-regex of the PowerShell module regex.
'foo19', 'bar', 'baz', 'akjdlkjf 20109 !', '', "foo '4' baz" | select-regex \d+

get-childItem -recurse -include *.sql | get-content  | foreach-object { select-regex 'insert +into +\S+' $_ }

See also

Some (mostly simple or lightweight) PowerShell modules I have written.

Index