Please consider the following possible value of Parkname
Yellowstone NP
^
13
^
11
Pasting into a box opened on the forum with </> uses a fixed width font so it is easy to see where characters are by count.
The Find for 'NP' will return 13, the value under the first ^ character.
Note that the end of Yellowstone, the second ^ character is in column 11. So to get to the last position (or character or column depending on how you want to think of it) you subtract 2 from 13 to get 11. We suspect that 2 is the correct value because most times we place a single character between words. Note that this will also work if the character between the NP and the ending "E" of Yellowstone is any single character.
This is very common sort of parsing of words. We might not use the simpler Scan function that would work for Yellowstone because of names like "Monument Valley" "Crater Lake" or "Black Canyon of the Gunnison" to name some National Parks in the US.
... View more