I have a string:
...<a href="http://mple.com/nCCK8.png">...
From this I am trying to strip out the
"nCCK8.png" part
I tried substr, but that requires 2 numbers and didn't work as it can be in different positions in the string. It does occur only once in the string.
The base string always has mple.com/ before the nCCK8.png part, and always "> after.
What is the easiest way to do this?