stri_*_first/last_charclass - merge arg
Open
enhancement
low priority
- Dominant language
- C++
- Stars
- 318
- Forks
- 48
- PR merge metrics
- No merged PRs in 30d
Description
Now it works like this:
``` R
stri_extract_last_charclass("abc123","\\p{Nd}")
[1] "3"
```
and we could add merge parameter (like in extract_all function) so it could work like this:
``` R
stri_extract_last_charclass("abc123","\\p{Nd}", merge=TRUE)
[1] "123"
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.