如何用rdlc中的新行替换定界符
How to replace a delimiter with a new line in rdlc
如果我有一个由竖线 (|
) 分隔符分隔的文本。
如何在 RDLC
报告中用新行替换此分隔符。
EX:
Name : John Michael | Department : Computer Science |Country : USA
到
Name : John Michael
Department : Computer Science
Country : USA
试试这个可能对你有帮助
=Replace(Fields!URFieldName.Value, "|", System.Environment.NewLine)
如果我有一个由竖线 (|
) 分隔符分隔的文本。
如何在 RDLC
报告中用新行替换此分隔符。
EX:
Name : John Michael | Department : Computer Science |Country : USA
到
Name : John Michael
Department : Computer Science
Country : USA
试试这个可能对你有帮助
=Replace(Fields!URFieldName.Value, "|", System.Environment.NewLine)