Data Engineering Streaming
- Data Engineering Streaming H2L
- All Products
COBOL Syntax
| perl Syntax
| Description
|
---|---|---|
9
| \d
| Matches one instance of any digit from 0-9.
|
9999
| \d\d\d\d
or
\d{4}
| Matches any four digits from 0-9, as in 1234 or 5936.
|
x
| [a-z]
| Matches one instance of a letter.
|
9xx9
| \d[a-z][a-z]\d
| Matches any number followed by two letters and another number, as in 1ab2.
|