summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jv.c12
-rw-r--r--tests/jq.test16
2 files changed, 25 insertions, 3 deletions
diff --git a/src/jv.c b/src/jv.c
index 948cfcde..b77e2d2d 100644
--- a/src/jv.c
+++ b/src/jv.c
@@ -1273,15 +1273,21 @@ jv jv_string_indexes(jv j, jv k) {
assert(JVP_HAS_KIND(k, JV_KIND_STRING));
const char *jstr = jv_string_value(j);
const char *idxstr = jv_string_value(k);
- const char *p;
+ const char *p, *lp;
int jlen = jv_string_length_bytes(jv_copy(j));
int idxlen = jv_string_length_bytes(jv_copy(k));
jv a = jv_array();
if (idxlen != 0) {
- p = jstr;
+ int n = 0;
+ p = lp = jstr;
while ((p = _jq_memmem(p, (jstr + jlen) - p, idxstr, idxlen)) != NULL) {
- a = jv_array_append(a, jv_number(p - jstr));
+ while (lp < p) {
+ lp += jvp_utf8_decode_length(*lp);
+ n++;
+ }
+
+ a = jv_array_append(a, jv_number(n));
p++;
}
}
diff --git a/tests/jq.test b/tests/jq.test
index 5c1b81d3..2d8b47e7 100644
--- a/tests/jq.test
+++ b/tests/jq.test
@@ -1416,6 +1416,22 @@ indices(", ")
"a,b, cd,e, fgh, ijkl"
[3,9,14]
+index("!")
+"здравствуй мир!"
+14
+
+.[:rindex("x")]
+"正xyz"
+"正"
+
+indices("o")
+"🇬🇧oo"
+[2,3]
+
+indices("o")
+"ƒoo"
+[1,2]
+
[.[]|split(",")]
["a, bc, def, ghij, jklmn, a,b, c,d, e,f", "a,b,c,d, e,f,g,h"]
[["a"," bc"," def"," ghij"," jklmn"," a","b"," c","d"," e","f"],["a","b","c","d"," e","f","g","h"]]