Skip to content

raylib.GetTextBetween

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Get text between two strings

Parameters

Parameter Default Value Note
text
begin
end

Return value

Condition Return Value
(always) number

Notes

Example

// Extract the text between two delimiter strings
result = raylib.GetTextBetween("Hello [World] Goodbye", "[", "]")
print result  // "World"

Clone this wiki locally