Regular expressions
| ^… | beginning of a string | ^la → Latin |
| …$ | end of a string | in$ → Latin |
| . | any character | la.in → Latin |
| …? | zero or one characters | lat*in → Latin |
| …* | zero or more characters | lat?in → Latin |
| …+ | one or more characters | lat+in → Latin |
| […] | alternate characters | la[dt]in → Latin |
| (…|…) | alternate sequences | la(t|tt)+in → Latin |
| [^…] | alternate excluded characters | la[^ou]in → Latin |
Here, regular expressions match inside words, and searches without regular expressions match entire words.
Special characters
Latin: ā ē ī ō ū | ˈ ː ʰ ʷRomanian: á ă â é í î ó ú ș ț | ə ɨ ʤ ʃ ʦ ʧ ʒ