Is there something that finds the first occurance scanning backward? It looks like%checkr does not work because it finds the first occurance something does not happen.
Example: string is aaaxaaaxaa
pos = %scanr('x' : source); would return 8
pos = %scanr('x' : source : 6); would return 4
The only way I can see to do this is a do-loop or a for-loop where you %subst one character at time moving backward through the string.
Example: string is aaaxaaaxaa
pos = %scanr('x' : source); would return 8
pos = %scanr('x' : source : 6); would return 4
The only way I can see to do this is a do-loop or a for-loop where you %subst one character at time moving backward through the string.








Comment