This web application permits both simple and very complex searches of isolated words or sequences of words, and shows the multilingual equivalences of the terms in context, as found in real and referenced translations. The terms searched can correspond to either of the languages of the translation, but it is also possible to carry out true multilingual searches, that is, to simultaneously search one term from each of the languages of translation.
Complex searches match regular expressions following the syntax and semantics of the regular expressions supported by PCRE (Perl Compatible Regular Expressions):
byte - a word containing the string "byte" in any position, like "xigabyte", "megabyte", "bytes", "Kbytes", "terabytes"...
\bmega\w* - a word that begins in "mega" ("\b" means word bounding and "\w" means any word character), as "mega", "megas", "megabytes", "megabit", "megalómano"...
produc{1,2}ión\b - a word ended in "produción" ou "producción"
\bxigabytes?\b - the word "xigabyte" or the word "xigabytes"
\b[xg]igabytes\b - the word "xigabytes" or the word "gigabytes"
\b[xg]igab[yi]tes?\b - any of the following words: "xigabytes", "gigabytes", "xigabyte", "gigabyte", "xigabites", "gigabites", "xigabite", "gigabite"
\ba\wa\b - three-letter word that begins in "a"
\ba\w\wa\b - four-letter word that begins and ends in "a"
\ba\w*a\b - two-or-more-letter word that begins and ends in "a"
\ba\w+a\b - three-or-more-letter word that begins and ends in "a"
I\+D - the string "I+D"
\bt[ei]\w+ \w+[ai]do\b - a word that begins in "te" or "ti"
followed by a word that ends in "ado" or "ido" (like in the Galician verbal periphrasis formed by "ter" + participle)
\bse (\w+ )?(\w+ )?fose\b - the words "se" and "fose" at a distance equal or lesser than two words
\bmountain (?!range)\b - matches any occurrence of "mountain" that is not followed by "range"
Symbols for characters
. - the dot matches any character except the newline by default