| >> English << | česky | Deutsch | Español | ZVON > Tutorials > Regular Expressions Tutorial |
| Intro / Search / ZVON |
| >> Example 18 << | Prev | Next | Contents | Regular Expressions |
| A1 B2 c3 d_4 e:5 ffGG77--__-- |
| Regular Expression: | \w |
|---|---|
| First match: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| All matches: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| Regular Expression: | \w* |
|---|---|
| First match: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| All matches: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| Regular Expression: | [a-z]\w* |
|---|---|
| First match: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| All matches: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| Regular Expression: | \w{5} |
|---|---|
| First match: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| All matches: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| Regular Expression: | [A-z0-9_] |
|---|---|
| First match: | A1 B2 c3 d_4 e:5 ffGG77--__-- |
| All matches: | A1 B2 c3 d_4 e:5 ffGG77--__-- |