How can I check within a string type variable whether from an index which would be the “i” in red whether the one on the right (In blue) is filled within this variable or empty counting just a few more spaces (Indexes):
The index to start searching is: (Just an example: “35”) which would result in the element: “i” being red in the sentence, and from there I want to see if next to it is filled within the string. Whether it is a whole word or whether it has a few more free and filled spaces. In short: I want to check from an index if the next elements (With a limit, of course) are filled.
You could use FString::Find on the return of the substring to check if it contains the needed element.
Or you could split the string into an array and then granularny step over it checking if the current letter is even to the letter of your needed entry.
The find would be cheaper but it would not take into account where in the substring the element is (though you can set a start position)