We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Use One(char) to define a character. Use OneOf(string) to define a range a-g ("a to g") or a set ag ("a or g").
One(char)
OneOf(string)
a-g
ag
The following will produce the following regular expression a[ij][x-z]:
a[ij][x-z]
var result = se .One('a') .OneOf("ij") .OneOf("x-z") .Generate();