visual studio Regex Find/Replace error
Posted
by rockinthesixstring
on Stack Overflow
See other posts from Stack Overflow
or by rockinthesixstring
Published on 2010-03-30T02:46:32Z
Indexed on
2010/03/30
2:53 UTC
Read the original article
Hit count: 501
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?
© Stack Overflow or respective owner