P
perlperl
how to regular expression in VBA
my string is "The operating system is Win32"
This is what i do in perl
if $string =~ /Thes operating system is Win32|Linux|Unix/ {
}
which mean the OS can be unix Linux or Win32
How this can be achieved in VBA
my string is "The operating system is Win32"
This is what i do in perl
if $string =~ /Thes operating system is Win32|Linux|Unix/ {
}
which mean the OS can be unix Linux or Win32
How this can be achieved in VBA