Skip to content

Commit 0516aa3

Browse files
author
Tyge Lovset
committed
Made cregex docs example online.
1 parent 75a1e92 commit 0516aa3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/cregex_api.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,14 @@ cregex_drop(&re1);
9696
If an error occurs ```cregex_compile``` returns a negative error code stored in re2.error.
9797

9898
### Getting the first match and making text replacements
99+
100+
[ [Run this code](https://godbolt.org/z/z434TMKfo) ]
99101
```c
100-
#define i_extern // include external utf8 and cregex functions implementation.
102+
#define i_extern // include external cstr, utf8, cregex functions implementation.
101103
#include <stc/cregex.h>
102-
#include <stc/cstr.h>
103104

104105
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.";
106107
const char* pattern = "\\b(\\d\\d\\d\\d)-(\\d\\d)-(\\d\\d)\\b";
107108

108109
cregex re = cregex_from(pattern);
@@ -116,7 +117,7 @@ int main() {
116117

117118
// Lets change all dates into US date format MM/DD/YYYY:
118119
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));
120121

121122
// Free allocated data
122123
cstr_drop(&us_input);

0 commit comments

Comments
 (0)