c# - Why my code fails to replace a string with empty string in RDLC column expression? -
i want replace particular text blank space in rdlc column.
i want replace .aspx ""
in every string.
i tried writing
=replace(fields!auditsuseractivity.value, ".aspx", "")
it works kinda lines
page applicants.aspx viewed
but not these kinda lines:
data added in inspectors.aspx
i.e. removed '.aspx' lines in .aspx appears in in-between not in '.aspx' appears @ end of string. know why?
update:
i used not working
=replace(fields!auditsuseractivity.value, "@"+".aspx", string.empty)
Comments
Post a Comment