I have the string 562865_numbersletterssymbols
If I want to delete, IF EXISTS; the first part (562865_), what should I search?
My guess was ^[^?:(562865_)]+$ to take what was not "562865_" (if existing ?:) until $ +$
But I discovered that (562865_) searchs every single digit and not the whole string.
How can I find the solution?
Regexfor this?$your_var = str_replace('562865_', '', $your_var), no? Sorry for not posting this as an answer, but I can't believe in this question being extremely localized.