stringi icon indicating copy to clipboard operation
stringi copied to clipboard

Fast and portable character string processing in R (with the Unicode ICU)

Results 52 stringi issues
Sort by recently updated
recently updated
newest added

I face a timeout issue during the installation of stringi. The issue seems to be connected to a timeout when downloading the ICU zip file. While I have manually set...

Hello, I try to install AssetCorr wiche includes stringi via following cmd with a http_proxy: ``` /usr/bin/Rscript --slave --no-save --no-restore-history -e ' Sys.setenv(http_proxy="http://www-proxy3.XXXX.XXX.de:8080/") install.packages(pkgs="AssetCorr", repos="http://ftp.fau.de/cran/")' ``` The called program leads...

It would be useful to have a vignette or similar that summarises the precise differences between the three engines that you're likely to encounter in R. I think most of...

documentation

options(OutDec=",") val = 0.86771 sprintf("%.3f", val) #[1] "0.868"

Formatter types: URBNF_SPELLOUT, which creates a formatter that spells out a value in words in the desired language, URBNF_ORDINAL, which attaches an ordinal suffix from the desired language to the...

``` r stringi::stri_sort("a", opts_collator = stringi::stri_opts_collator(locale = "doesntexist")) #> [1] "a" ``` Created on 2022-04-14 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1) Originally filed in https://github.com/tidyverse/stringr/issues/440

Have you considered implementing an ALT-REP string class? I think done properly, you'd see a large increase in performance across the board. There are many reasons why: * Simpler data...

question

Is there any existing function that does this? ```R x list(c("a", "b"), c("d", "e", "f"), "g") split_length(x, 2) #> list("ab", c("de", "f"), "g") ``` I feel like this has to...

`stri_detect_regex` looks not recognizing Chinese characters correctly when it is treated as a regex pattern. I'm using the 1.4.0.9000 dev version on R 4.1.0. Here's an example: ```r Sys.setlocale(, "Chinese")...

Hello, great package. `stri_datetime_parse('2022-01-01', 'yyyy MM dd')` works well, except that time part is set to current time, something like ``` stri_datetime_parse('2022-01-01', 'yyyy MM dd') [1] "2022-01-01 10:46:40 KST" ```...

enhancement