Adaptado de este artigo
Operadores de pesquisa:
?
- qualquer caractere. (equivalente regex: .
)
Example:
d?g
findsdig
,dog
, anddug
[-]
- Personagem no intervalo. (equivalente regex: mesmo)
Example:
[a-m]end
findsbend
,fend
,lend
, andmend
(the first character in this case isa
,m
, or any letter between)
<
- Início do Word. (equivalente regex: ^
)
Example:
<tele
findstelemarketing
,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 findpresorted
andprevented
[!]
- não. (equivalente regex: [^]
)
Example: Finds the text but excludes the characters inside the brackets;
t[!ae]ll
findstill
andtoll
but nottall
andtell
{n}
- Número de Ocorrências. (equivalente regex: mesmo)
Example: Finds the specified number of occurrences of the letter immediately before the
{
;to{2}
findstoo
andtool
but 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}
finds100
and1000
but not10
@
- anterior 1 ou mais. (equivalente regex: +
)
Example: Finds one or more of the character immediately preceding the
@
;^p@^t
finds 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*t
findsdescent
,desert
,dessert
, anddestruct
[]
- Um dos caracteres especificados. (equivalente regex: mesmo)
Example:
b[aeiou]t
findsbat
,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]st
findsmast
andmist
but notmost
ormust