Search notes:

System.Text.RegularExpressions.Regex - Matches()

The method Matches() of the System.Text.RegularExpressions.Regex class returns a System.Text.RegularExpressions.MatchCollection object.
PowerShell example:
$txt = @'
one v_42 two three v_99_xyz
four five
v_0_abc six.
'@

foreach ($m in [regex]::Matches($txt, '\bv_\d+\w*')) {
   write-host $m.value
}

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Microsof...', 1759398031, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Microsoft/dot-net/namespaces-classes/System/Text/RegularExpressions/Regex/Matches/index(43): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78