I got the following entry in my database:
images/test.jpg
I want to trim the entry so I get: test
test
So basically, I want
I just did this in one of my reports and it was very simple.
Try this:
=MID(Fields!.Value,8,4)
Note: This worked for me because the value I was trying to get was a constant not sure it what you are trying to get is a constant as well.