Okay, I wasn't entirely sure what the "15,16" meant in the pattern. If the
numbers are always followed by a space (is that what the "\s\S" part of your
expression is for?), my code could be modified to this...
Whatever it is that follows the string of digits is undefined in the OP's
specifications. It could be a space; it could be another digit; it could be an
alpha character; it could be nothing. That is a problem with the
specification.
Also, whatever it is that precedes the string of digits is ALSO unspecified. It
could even be another digit!
If, as in the OP's example, the string of digits is ALWAYS preceded and
followed by a space, then his regex should have been something like:
\s\d{15,16}\s
If he only wanted to capture the standalone string of digits, then
\s(\d{15,16})\s would capture just the digits into Group 1.
and, expanding on that,
\s\d{15,16}\s+([\s\S]*) would also
capture everything after the string of digits into group 2 except for
the leading <space>'s before group 2.
In my suggestion, the [\s\S] will match every character that is either a
<space> or not a <space>. In other words, it captures everything.
If all I wanted to do was return everything in the string that came aftera 15
or 16 digit number, that was bounded by spaces, I would just replace the
beginning of the string with nothing. It's much simpler, and probably faster.
===================================
Option Explicit
Function Part2(s As String) As String
Dim re As Object
Set re = CreateObject("vbscript.regexp")
re.Pattern = "^[\s\S]+\s\d{15,16}\s+"
Part2 = re.Replace(s, "")
End Function
====================================
If I wanted to include the space prior to " Raffles Traders" as the OP did in
his example, then perhaps I would use this pattern:
re.Pattern = "^[\s\S]+\s\d{15,16}\b"
Now this would return the unaltered string if there was no match, but we could
easily test for that, depending on what the OP wanted to do in that instance.
-----------------
if re.test(s) = true then
part2 = re.replace(s,"")
else
part2 = "no pattern match"
end if