Additionally, be aware that the regex expression would also match: Product/Detail AB aspx And will capture just 'A'. You need to change "(.*)/Detail(.*) . aspx" to "(.*)/Detail(.*) \. aspx"; remember that the expression "." means any character, you need to escape...