Humanizr / Humanizer

Humanizer meets all your .NET needs for manipulating and displaying strings, enums, dates, times, timespans, numbers and quantities
Other
8.68k stars 965 forks source link

decimal to percentage string #1295

Closed mulei2023 closed 8 months ago

mulei2023 commented 1 year ago

could not find any usage for transforming a decimal to readable percentage string

eg: 0.48 -->48% 0.3754->37.54%

etherfield commented 1 year ago

Workaround: 0.48.Hundreds() + "%"

hangy commented 1 year ago
0.48.ToString("P0");

Will do the same and should do better with localization

hazzik commented 8 months ago

Closing as per @hangy