Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rudashi committed May 24, 2024
1 parent 0a83418 commit d4d28f0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 48 deletions.
24 changes: 0 additions & 24 deletions docs/pl/podstawy/dodatkowe-metody.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,18 +105,6 @@ $pattern = Regex::build()->letter();
// /[a-zA-Z]/
```

### `letters`

The `letters` method matches all letters, regardless of whether it is lowercase or uppercase.

```php
use Rudashi\Regex;

$pattern = Regex::build()->letters();

// /[a-zA-Z]+/
```

### `lowerLetter`

The `lowerLetter` method matches any single lowercase letter.
Expand All @@ -129,18 +117,6 @@ $pattern = Regex::build()->lowerLetter();
// /[a-z]/
```

### `lowerLetters`

The `lowerLetters` method matches all lowercase letters.

```php
use Rudashi\Regex;

$pattern = Regex::build()->lowerLetters();

// /[a-z]+/
```

### `number`

The `number` method matches any single number (equivalent to `\d`).
Expand Down
24 changes: 0 additions & 24 deletions docs/usage/tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,18 +105,6 @@ $pattern = Regex::build()->letter();
// /[a-zA-Z]/
```

### `letters`

The `letters` method matches all letters, regardless of whether it is lowercase or uppercase.

```php
use Rudashi\Regex;

$pattern = Regex::build()->letters();

// /[a-zA-Z]+/
```

### `lowerLetter`

The `lowerLetter` method matches any single lowercase letter.
Expand All @@ -129,18 +117,6 @@ $pattern = Regex::build()->lowerLetter();
// /[a-z]/
```

### `lowerLetters`

The `lowerLetters` method matches all lowercase letters.

```php
use Rudashi\Regex;

$pattern = Regex::build()->lowerLetters();

// /[a-z]+/
```

### `number`

The `number` method matches any single number (equivalent to `\d`).
Expand Down

0 comments on commit d4d28f0

Please sign in to comment.