summaryrefslogtreecommitdiff
path: root/string_utils.c
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-12-11 15:33:37 -0500
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-12-11 15:33:37 -0500
commit80cf1f9fc280652ec523bd8dda1092db48e6e327 (patch)
tree839d1b33410b3b660063c9b64b7e56f310a6c28c /string_utils.c
parent36f205a1008698be54ded3b6bb31b49a1bcec981 (diff)
added conditional_regex_replace utility function
Diffstat (limited to 'string_utils.c')
-rw-r--r--string_utils.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/string_utils.c b/string_utils.c
index 7b60792..77765d2 100644
--- a/string_utils.c
+++ b/string_utils.c
@@ -149,3 +149,18 @@ void String_Parameter_To_Text(float Float_To_Convert, int significant_digits,
g_free (unit_mult);
}
+
+gchar* conditional_regex_replace (gboolean do_it, gchar* in_string, gchar* regex_string, gchar* replace_with)
+{
+ gchar *out;
+
+ if (do_it) {
+ GRegex *regex = g_regex_new (regex_string, 0, 0, NULL);
+ out = g_regex_replace_literal (regex, in_string, -1, 0, replace_with, 0, NULL);
+ g_regex_unref (regex);
+ } else {
+ out = g_strdup (in_string);
+ }
+
+ return out;
+}