/*
- * 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
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));
}
/**
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
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 ();
}