]> saetta.ns0.it Git - libzakutils/commitdiff
string_replace_full gone on loop where replacing same occurrence.
authorAndrea Zagli <azagli@libero.it>
Sat, 13 Jul 2019 09:11:09 +0000 (11:11 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 13 Jul 2019 09:11:09 +0000 (11:11 +0200)
src/generic.c
tests/generic.c

index ea37b4ea3310a8b5306230a08eaf06837459b3bf..1ff5b070edd353a2f431b0f77c80204fa5dc0e3a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2018 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2019 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -92,29 +92,10 @@ gchar
                                 const gchar *origin,
                                 const gchar *replace)
 {
-       gchar *ret;
-       gchar *p;
-
        if (string == NULL) return NULL;
        if (origin == NULL || replace == NULL) return g_strdup (string);
 
-       ret = g_strdup (string);
-
-       do
-               {
-                       p = g_strstr_len (ret, -1, origin);
-
-                       if (p == NULL)
-                               {
-                                       return ret;
-                               }
-
-                       ret = g_strndup (ret, p - ret);
-
-                       ret = g_strdup_printf ("%s%s%s", ret, replace, p + strlen (origin));
-               } while (TRUE);
-
-       return ret;
+       return g_strjoinv (replace, g_strsplit (string, origin, 0));
 }
 
 /**
index eae0aef425f62f6604bac416527162d323ff7d73..2466fd4f263c58408eb3e3579b491bf001fb55cc 100644 (file)
 static void
 test_string_replace ()
 {
-       g_assert_cmpstr (zak_utils_string_replace ("a string with double quotes \" to be escaped", "\"", "\\\\\""), ==, "a string with double quotes \\\\\" to be escaped");
+       g_assert_cmpstr (zak_utils_string_replace ("a string with double quotes \" to be escaped \"", "\"", "\\\\\""), ==, "a string with double quotes \\\\\" to be escaped \"");
 }
 
 static void
 test_string_replace_full ()
 {
-       g_assert_cmpstr (zak_utils_string_replace_full ("a string with double quotes \" to be escaped", "\"", "\\\\\""), ==, "a string with double quotes \\\\\" to be escaped");
+       g_assert_cmpstr (zak_utils_string_replace_full ("a string with \" double quotes \" to be escaped", "\"", "\\\\\""), ==, "a string with \\\\\" double quotes \\\\\" to be escaped");
+       g_assert_cmpstr (zak_utils_string_replace_full ("a string with \" double quotes \" to be escaped", "\"", "OO"), ==, "a string with OO double quotes OO to be escaped");
 }
 
 int
@@ -36,7 +37,7 @@ main (int argc, char *argv[])
        g_test_init (&argc, &argv, NULL);
 
        g_test_add_func ("/generic/string_replace", test_string_replace);
-       /*g_test_add_func ("/generic/string_replace_full", test_string_replace_full);*/
+       g_test_add_func ("/generic/string_replace_full", test_string_replace_full);
 
        return g_test_run ();
 }