I'm trying to figure out how to write a pattern to match to the following: "3Z 5Z". The numbers in this can vary, but the Z's are constant. The issue I'm having is trying to include the white space... Currently I have this as my pattern
pattern = @"\b*Z\s*Z\b";
The '*' represent the wildcard for the number preceding the "Z", but it doesn't seem to want to work with the space in it. For example, I can use the following pattern successfully for matching to the same thing without the space (i.e. 3Z5Z)
pattern = @"\b*Z*Z\b";
I am writing this program in .NET 4.0 (C#). Any help is much appreciated!
EDIT: This pattern is part of a larger string, for example: 3Z 10Z lock 425"