I have a question with the same scenario as this question , except that there can be more than one in the text _.
Example:
57b42a0557cdd_Filename_whatever.pdf
How can I omit everything to the first underscore (including underscore) to save the rest as Filename_whatever.pdf
A random uniquifier may have different lengths, but there will always be an underscore between it and the actual file name.
As in the above question; {{ filename|split('_')[1] }}may work, but what if the actual file name has an underscore?
I want this to be desirable in twig just for showing purposes, because a fully unique name is used in different parts of the project.