
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
Sometimes I don't want to read the entire string in my file.
I just need to read the 5th character and stop at the say the 10th.
The string can have in access of 100 characters, and no delimiters.
May sound strange, but there is a reason for no delimiters - so i cant use them in this case.
The function reads the string from the current file position
So I can find a starting point but how would I stop at character 10?
Is this possible?
I thought of using
But I'm afraid this might bog things down, since i have a lot of characters to read when doing it this way
So I was looking for some easier solution if available.
Thanks