Skip to contents

Replace text between two specific strings, memory must be MemFree().

Usage

text_replace_between_alloc(text, begin, end, replacement)

Arguments

text

A string.

begin

A string.

end

A string.

replacement

A string.

Value

A string

Note

This function has been auto-generated from the following Raylib function definition:

char * TextReplaceBetweenAlloc(const char * text, const char * begin, const char * end, const char * replacement);

Examples

if (FALSE) {
text_replace_between_alloc("Hello", "text", "text", "text")
}