I have a string that "may" be longer than any simple int boundaries.
Currently, the string.substring function takes only int parameters as index and length which is not enough for me since i need long for the parameter value types.
Do you know any implementation of long substring function?
Or what do you recommend I do to solve this possible finding substring problem with very long string?
Thank you.