\S+any non-whitespace character, repeated at least once
.*any character, repeated any number of times
VOS_Mallocthe literal text VOS_Malloc (case sensitive) \(the literal ( (4010 / 508 / 2816)
\S+any non-whitespace character, repeated at least once
.*any character, repeated any number of times
\)the literal ) (4110 / 518 / 2916)
;the literal ; (5910 / 738 / 3B16)
.*any character, repeated any number of times
memset_sthe literal text memset_s (case sensitive) \s*any whitespace character, repeated any number of times
\(the literal ( (4010 / 508 / 2816)
Negated Character Class[^,]* *matches any number of characters outside the set below:
,the literal , (4410 / 548 / 2C16)
\1the text saved by group 1
Negated Character Class[^,]* *matches any number of characters outside the set below:
,the literal , (4410 / 548 / 2C16)
Negated Character Class[^,]+ +matches at least one character outside the set below:
,the literal , (4410 / 548 / 2C16)
Negated Character Class[^,]+ +matches at least one character outside the set below:
,the literal , (4410 / 548 / 2C16)
Negated Character Class[^,]+ +matches at least one character outside the set below:
,the literal , (4410 / 548 / 2C16)
\)the literal ) (4110 / 518 / 2916)
;the literal ; (5910 / 738 / 3B16)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
s modifier: single line. Allows a dot to match line terminators