https://regex101.com/r/9n9yhW/1
https://regex101.com/r/nnseOW/2
https://sourceforge.net/p/omegat/wiki/Filtering%20Segments/
(add ttt-docs too)
also the expressions to find source and target...
tags in omegat:
https://regex101.com/library?orderBy=RELEVANCE&search=omegat
https://regex101.com/r/A2aDKJ/1
https://regex101.com/r/l5zSWX/1
that define a
search pattern
A sequence of characters
Matches text that follows a pattern :Not a pattern in the sense of a sequence, but in the sense of having something in common. What do these pair of strings have in common?
- test - test
- abc - xyz
- 123 - 456
- 1 - 99999999
- 1 - a
- a23 - =,&
A sequence of characters
that define a search pattern.
{n,m}
?
+
*
find an opening parenthesis preceded by an Arabic character
e.g. A and a are different characters! (different code points)
(?P<year>(?:19|20)\d\d)(?P<delimiter>[- /.])(?P<month>0[1-9]|1[012])\2(?P<day>0[1-9]|[12][0-9]|3[01])
do not forget to cover examples sent by Valentina in a Word file (same as found in OmegaT's regex page)