-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.TextReplace
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Replace text string REQUIRES: strstr(), strncpy() NOTE: Limited text replace functionality, using static string
| Parameter | Default Value | Note |
|---|---|---|
| text | ||
| search | ||
| replacement |
| Condition | Return Value |
|---|---|
| (always) | number |
result = raylib.TextReplace("Hello World", "World", "MiniScript")
print result // "Hello MiniScript"