So I have a list with a few strings:
list = ["This is a test string", "Please help me, I'm lost"]
I want to get a portion of the string 0. For example, I want to get the substring "test".
I tried using the method substr() but when I give the parameters it returns the previous substrings aswell.
list[0].substr(9, 14)
Returns: "This is a test" And I only want "test"
Is this possible?