if your wanting the name of the article from the URL, try something like this
http://forum.cmsmadesimple.org/index.ph ... #msg145249
just remove the |replace:'-':' ' from
{assign var=newstitle value=$URLSS|replace:'.html':''|regex_replace:'/(http.*?\/72\/)/':''|replace:'-':' '}
and
http://domain.tld/news/12/6/my-first-article
should trun in to
my-first-article
so end product would be something like
{capture assign='URLSS'}{URLhere}{/capture}
{assign var=newstitle value=$URLSS|replace:'.html':''|regex_replace:'/(http.*?\/72\/)/':''}
in the template... but you always just use the news title with the |replace there too
Many ways to skin this cat...
cheers
jeremyBass
*********edit**************
you may also do this
{assign var=newstitle value=$URLSS|replace:".html":''|regex_replace:"/(http.*?\/`$content_id`\/)/":""}