views:

36

answers:

1

Could anyone help me with this regex issue?

^(Songs|Albums)$
becomes
{R:1}.aspx

This gives you songs.aspx, albums.aspx

wondering if I can do this in Regex:

^(Songs|Albums|Songs/List)$

and how do I get SongsList.aspx from Songs/List?

Thanks!

Edit
This worked:
^(Songs|Albums)/(List)?$
{R:1}{R:2}.aspx

A: 

This worked:
^(Songs|Albums)/(List)?$
{R:1}{R:2}.aspx

MMGN.com