Function Stemmer_EN->cvc
Definitions
sources/lang_stemmer_EN.php
- Checks for ending CVC sequence where second C is not W, X or Y
- Visibility: private
- Is abstract?: No
- Is static?: Yes
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $str | string | No | No | required parameter | N/A | N/A | String to check |
Returns
- Result
- Type: bool
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Checks for ending CVC sequence where second C is not W, X or Y
*
* @param string $str String to check
* @return bool Result
*/
private static function cvc($str)
* Checks for ending CVC sequence where second C is not W, X or Y
*
* @param string $str String to check
* @return bool Result
*/
private static function cvc($str)

