Still learning regex here but I need a little help.
I have this string
assets/BigBlueSomething_tn.jpg
I need to match this
BigBlueSomething
Closest I got is this
`[^\/][a-zA-Z]+_
Problem is that I keep matching the underscore
I've tried this [^\/][a-zA-Z]+[^_]
at the advice from several other threads but to no avail.
I'm writing in javascript, I believe there are some regex things that dont work in that language.