@Bill House Thanks for reaching out to Microsoft Q&A, apologize for any inconvenience caused on this.
If your subject property follows this pattern "/containers/<container-name>/blobs/<blobName>" always then you can use the below expression in compose action of your logic app.
- Apply the split at
/blobs
instead of applying split on special character '/'
split(last(split(string(triggerBody()?['subject']),'/blobs')),'/')[1]
Hope this helps, let me know if you have any further questions on this.