the manual says:
Sample
string str="abcdefgh";
string str1=StringSetChar(str, 3, 'D');
// str1 is "abcDefgh"
so I guess quotes are needed unless u wanted to replace it by the chr(0) - not sure the compiler handlesthis.
Yes, a downloadable documentation would be nice..
Sample
string str="abcdefgh";
string str1=StringSetChar(str, 3, 'D');
// str1 is "abcDefgh"
so I guess quotes are needed unless u wanted to replace it by the chr(0) - not sure the compiler handlesthis.
Yes, a downloadable documentation would be nice..
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
try to replace 3 by 0:
string a="12345";
StringSetChar(a,2,0);
the string remains the same
Besides, is there a complete list of functions, or a manual that can download?
tks