I have a view which pulls a list of PDFs from the media library - the filename (post title) contains information that I don't want to display in my view. Basically I am only interested in the last 2 words.
Here is a sample of the post title:
HN 35 1 January 2021
HN V32 No11 November 2018
HN V33 No2 February 2019
The following RegEx would return the last 2 words: (?:\S*\s*){2}$
Is it possible to apply this RegEx to the value of a field value or any other way of getting the same result?
Thanks,
Phil