I'm struggling with formatting a string. When my value is like: OrderLineId
and want to format this to: order_line_id
. All lowercase and each uppercase char should be appended with a _
except the first character.
I do see some use of TextInfo
of the using System.Globalization;
but I can't get my head to fix this.
I try to fix this with just C# code, rather not Regex.... sorry
Thanks in advance.