Hi,
how can I convert this string:
bKk_035A_paint-House_V003
to
BKK_035a_paint-House_v003
with a regular expression (e.g. Regex.Replace)?
This regex matches the string:
^(?<Group1>[a-z][a-z0-9]{1,2})_(?<Group2>\d{3}[a-z]{0,2})_(?<Group3>[a-z-]+)_(?<Group4>v\d{3,5})$
- Group1 = uppercase
- Group2 = lowercase
- Group3 = unchanged
- Group4 = lowercase
Thanks for any help,
Patrick