PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → String functions returning values truncated at 65k
String functions returning values truncated at 65k
Débuté par Mark Sylvia, 21 jan. 2026 14:57 - Aucune réponse
Posté le 21 janvier 2026 - 14:57
When using functions for string variables like Replace, StringBuild, ExtractStringBetween and others that return a modified string, the value is being truncated at 65k. The variables themselves can hold over 65k but the string functions cannot?


sJSON_GridInfo is ANSI string
sJSON_GridInfo= floadtext(sFileName) // load a 69k string

// below ExtractStringBetween returns a string truncated at 65k
sJSON_GridInfo= ExtractStringBetween(sJSON_Exam,1,"[","]",FromBeginning)


Thank you in advance!
Mark