File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,14 @@ cregex_drop(&re1);
96
96
If an error occurs ``` cregex_compile ``` returns a negative error code stored in re2.error.
97
97
98
98
### Getting the first match and making text replacements
99
+
100
+ [ [ Run this code] ( https://godbolt.org/z/z434TMKfo ) ]
99
101
``` c
100
- #define i_extern // include external utf8 and cregex functions implementation.
102
+ #define i_extern // include external cstr, utf8, cregex functions implementation.
101
103
#include <stc/cregex.h>
102
- #include <stc/cstr.h>
103
104
104
105
int main () {
105
- const char* input = "start date is 2023-03-01, and end date is 2025-12-31.";
106
+ const char* input = "start date is 2023-03-01, end date 2025-12-31.";
106
107
const char* pattern = "\\b(\\d\\d\\d\\d)-(\\d\\d)-(\\d\\d)\\b";
107
108
108
109
cregex re = cregex_from(pattern);
@@ -116,7 +117,7 @@ int main() {
116
117
117
118
// Lets change all dates into US date format MM/DD/YYYY:
118
119
cstr us_input = cregex_replace(&re, input, "$2/$3/$1");
119
- printf ("US input: %s\n", cstr_str(&us_input));
120
+ printf ("%s\n", cstr_str(&us_input));
120
121
121
122
// Free allocated data
122
123
cstr_drop (&us_input);
You can’t perform that action at this time.
0 commit comments