In MQL5 it's passed by reference, use it like so:
string s = FileReadString(handle); StringTrimLeft(s); StringTrimRight(s);

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
Hello guys,
I have a problem with StringTrimLeft and StringTrimRight, because they are integers in mql5. In mql4 source code, all is good because they are strings there. How I fix them for exactly solution in mql5 like in mql4?
string exp = FileReadString(handle);
exp = StringTrimLeft(StringTrimRight(exp));