Match Against Any One of the Characters in a List or Range - CAPTUREit - Foundation 23.1 - Foundation 23.1 - AnyDoc - external

CAPTUREit

Platform
AnyDoc
Product
CAPTUREit
Release
Foundation 23.1
License

A list of characters contained in square brackets matches against any one of the characters in the list.

For example:

/[ABC]/Matches either "A", "B", or "C"

Also, a hyphen can be used to specify a range, such as

/[0-9ABC]/Matches either "A", "B", "C", or a single digit.