From d4d28f07f1f74dab8b7764aeb075fdf28311a457 Mon Sep 17 00:00:00 2001 From: rudashi Date: Fri, 24 May 2024 07:59:23 +0200 Subject: [PATCH] Update docs --- docs/pl/podstawy/dodatkowe-metody.md | 24 ------------------------ docs/usage/tokens.md | 24 ------------------------ 2 files changed, 48 deletions(-) diff --git a/docs/pl/podstawy/dodatkowe-metody.md b/docs/pl/podstawy/dodatkowe-metody.md index 6105e8d..1540716 100644 --- a/docs/pl/podstawy/dodatkowe-metody.md +++ b/docs/pl/podstawy/dodatkowe-metody.md @@ -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. @@ -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`). diff --git a/docs/usage/tokens.md b/docs/usage/tokens.md index 8ac1454..44c03d2 100644 --- a/docs/usage/tokens.md +++ b/docs/usage/tokens.md @@ -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. @@ -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`).