Please help with regular expression syntax.
I have tried both these two expressions, using ascii hex - but I am still
getting lost on the on whether or not Reporting Services will support the
Replace function including a ascii hex Carriage Return or an ascii hex
Horizontal Tab replace string...?
=Replace(Fields!product_Bullets.Value, "[chr(35) + chr(36) + chr(35)]",
"chr(13) + chr(42) + chr(9)", "1", "-1", "1")
=Replace(Fields!product_Bullets.Value, "([\x23][\x24][\x23])",
"([\xD][\x2A][\x9])", "1", "-1", "1")
Please advise any suggestions for correct regular expression syntax.
[quoted text, click to view] "Michael" wrote:
> I tried this expression -
>
> =IIF(Fields!product_Bullets.Value="chr(35) + chr(36) + chr(35)", "",chr(13)
> + chr(42) + chr(9))
>
> "Michael" wrote:
>
> > Help please… - I have a report with textbox field called “Bullets†– using
> > #$# special characters (pound-dollar-pound) as bullet delimiter syntax from
> > legacy publishing system.
> >
> > Questions:
> >
> > 1. What is the correct .NET regular expression to replace #$# special
> > characters within textbox field to display Bullet text…?
> > 2. Can textbox field display Bullet text…?
> >
> > Please advise MSDN od Books Online references for .NET regular expression
> > Replace syntax.
> >
> > Thank you.
> > Michael