Say I have a string, for example:
String s = "abcdefgh\n" +
"ijklmno\n" +
"pqrstuvwxyz";
and I know the character position in the string, how can i get the specific row where that character is, and store it in a string?
For example, say I know that the character is at position 13 (the 'm'), how can I get the second row?

