Is there a way to change a single character in a String? In C programming you could do:
char s[4] = "abc";
s[0]='c';
Is there a way to manipulate a string in flowgorithm? I get an error if I try it:

There is always the error that the string is not an array. Maybe there is someone who got a hint to solve it.
Flowgorithm is often lacking in many aspects. Strings are not Arrays and cannot be indexed for writing. No idea why! But you can use
Char()to get the i-th character in a string (whose type is a String with length 1). You can convert a 1 character long String into its ASCII code withToCode()and you can move back from ASCII code to 1 character long String withToChar(). Additionally Arrays (also parameters) are mutable, while Strings are immutable. We can then make aStringToArray()function:then a
ArrayToString()function:Then put them together in a
SetChar()function:You can use it like this:
The XML version: