Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to replace a delimiter with a new line in rdlc

If I have a text separated by a pipe (|) delimiter.

How to replace this separator with new line in RDLC report.


EX:

Name : John Michael | Department : Computer Science |Country : USA 

To

 Name : John Michael 
 Department : Computer Science 
 Country : USA 
like image 727
Anyname Donotcare Avatar asked May 12 '16 07:05

Anyname Donotcare


1 Answers

Try this may help you

=Replace(Fields!URFieldName.Value, "|", System.Environment.NewLine)
like image 67
Jaydip Jadhav Avatar answered Nov 10 '22 22:11

Jaydip Jadhav