How to replace a particular string in rdlc?

与世无争的帅哥 提交于 2019-12-10 23:25:19

问题


I just want to replace a particular text with blank space in RDLC column.

I want to replace .aspx with "" in every string.

I tried writing

=Replace(Fields!AuditsUserActivity.Value, ".aspx", "")

it works for this kinda lines

Page Applicants.aspx viewed 

but not for these kinda lines:

Data added in Inspectors.aspx

i.e. it removed .aspx from those lines in which .aspx appears in in-between but not for those in which .aspx appears at the end of string.

WHY ?

来源:https://stackoverflow.com/questions/33390259/how-to-replace-a-particular-string-in-rdlc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!