Skip to content
Tim Bourguignon edited this page Jan 17, 2014 · 1 revision

You can add AndWhitespaces to the Wildcards above to include Whitespaces in the pattern. The following will produce a regular expression of type [a-zA-Z\s]*[0-9]

var result = se
    .LettersAndWhitespaces
    .Number
    .Generate();   
Clone this wiki locally