visual studio Regex Find/Replace error
- by rockinthesixstring
I'm working on using Find/Replace to change a bunch of labels to DataBound text.
Here's my regex
<asp:Label ID="lbl{\d*}" runat="server" />
Here's my replace
<%# Eval("\1")%>
Here's my Error
Unknown argument for ':' operator. Complete Regular Expression required in the search string.
How would I resolve this?