The format of Url is - https://example.com/items/html5-templates/654321
And,
I need to get the regex code for using in a auto Parse plugin to my wp site,,,
And then I can customise the link as Like:
https://.....(link without last part)...../...anything..../...(only last numbers from the link format)...
Thanks a lot for your precious time,,,
Try something like this:
^(.*/)(\d+)$
The first part of URL will be in first capture group, and second capture group will be numbers.