I want to convert a field in a SSRS report to sentence case eg:
some test sentence. second Sentence.
should be converted to:
Some test sentence. Second sentence.
I am currently attempting this using a regular expression:
=System.Text.RegularExpressions.Regex.Replace(
IIf(IsNothing(Fields!Title.Value), "", LCase(Fields!Title.Value)),
"(^[a-z])|\.\s+(.)",
UCase("$1")
)
The above rejex is failing. It seems that the part: UCase("$1")
is not working. What I'm getting is the entire string in lowercase.
As mentioned in comments SSRS will not capitalize "$1" identifier since it will take it as literal string.
As workaround I suggest you use this custom code:
Go to Report Properties / Code and put this code:
To use it invoke it in your textbox as follows:
I've tested this string:
It returned:
Let me know it this can help you.