Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
shorthands' session finished
  • Loading branch information
gabsprates committed Aug 18, 2017
commit a9ac4368615d920afac1470510bec212c75b362c
19 changes: 9 additions & 10 deletions README-pt_BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,18 +280,17 @@ must be end of the string.

## 3. Forma Abreviada de Conjunto de Caracteres

Regular expression provides shorthands for the commonly used character sets, which offer convenient shorthands for commonly used
regular expressions. The shorthand character sets are as follows:
As expressões regulares fornecem abreviações para conjuntos de caracteres comumente usados, que oferecem atalhos convenientes para expressões regulares comumente usadas. As abreviações são as seguintes:

|Shorthand|Description|
|Abreviação|Descrição|
|:----:|----|
|.|Any character except new line|
|\w|Matches alphanumeric characters: `[a-zA-Z0-9_]`|
|\W|Matches non-alphanumeric characters: `[^\w]`|
|\d|Matches digit: `[0-9]`|
|\D|Matches non-digit: `[^\d]`|
|\s|Matches whitespace character: `[\t\n\f\r\p{Z}]`|
|\S|Matches non-whitespace character: `[^\s]`|
|.|Qualquer caractere, exceto nova linha|
|\w|Corresponde à caracteres alfanuméricos: `[a-zA-Z0-9_]`|
|\W|Corresponde à caracteres não alfanuméricos: `[^\w]`|
|\d|Corresponde à dígitos: `[0-9]`|
|\D|Corresponde à não dígitos: `[^\d]`|
|\s|Corresponde à caracteres de espaços em branco: `[\t\n\f\r\p{Z}]`|
|\S|Corresponde à caracteres de espaços não em branco: `[^\s]`|

## 4. Olhar ao Redor

Expand Down