Adaptado de este artigo
Operadores de pesquisa:
? - qualquer caractere. (equivalente regex: . )
Example:
d?gfindsdig,dog, anddug
[-] - Personagem no intervalo. (equivalente regex: mesmo)
Example:
[a-m]endfindsbend,fend,lend, andmend(the first character in this case isa,m, or any letter between)
< - Início do Word. (equivalente regex: ^ )
Example:
<telefindstelemarketing,telephone, andtelevision
> - Fim do Word. (equivalente regex: $ )
Example:
tion>findsaggravation,inspiration, andinstitution
() - expressão. (equivalente regex: (?:) )
Example: Lets you "nest" search expressions within a search term. For instance,
<(pre)*(ed)>to findpresortedandprevented
[!] - não. (equivalente regex: [^] )
Example: Finds the text but excludes the characters inside the brackets;
t[!ae]llfindstillandtollbut nottallandtell
{n} - Número de Ocorrências. (equivalente regex: mesmo)
Example: Finds the specified number of occurrences of the letter immediately before the
{;to{2}findstooandtoolbut notto
{n,} - Número de Ocorrências. (equivalente regex: mesmo)
Example: Adding a
,after the number tells Word to look for at least that number of occurrences; a{4,}finds four or more of the letter a in a row
{n,n} - Número de Ocorrências. (equivalente regex: mesmo)
Example:
10{2,3}finds100and1000but not10
@ - anterior 1 ou mais. (equivalente regex: + )
Example: Finds one or more of the character immediately preceding the
@;^p@^tfinds one or more paragraph break marks followed by a tab mark
* - 0 ou mais caracteres. (equivalente regex: .* )
Example: Finds a word with one or more of the specified character, or words with none of the characters;
des*tfindsdescent,desert,dessert, anddestruct
[] - Um dos caracteres especificados. (equivalente regex: mesmo)
Example:
b[aeiou]tfindsbat,bet,bit, andbut
[!a-z] - Qualquer caractere único, com exceção dos que estão no intervalo dentro do colchete. (equivalente regex: [^a-z] )
Example:
m[!o-z]stfindsmastandmistbut notmostormust