本文介绍了如何使人性化器不显示毫秒?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何让Humanizer不显示毫秒?



i不希望我的结果中的最后几毫秒



我如何删除它?



有没有办法做到这一点或删除最后一毫秒部分



我正在使用转换为人类可读时间



见图像下方

[]



如果有人知道这一点然后请帮助



谢谢



我尝试了什么:



i我这样做: -



How do i make Humanizer not display milliseconds?

i don't want that last milliseconds in my result

how do i remove this?

Is there any method to do that or to remove that last milliseconds part

I am using to human readable time

see below the image
[^]

if anyone know this then please help

thanks

What I have tried:

i am doing it like this :-

Console.WriteLine("Time Remaining :- {0}", timeRemaining.Humanize(5));

推荐答案

using System;
using Humanizer;
namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            string a = TimeSpan.FromMilliseconds(1).Humanize().RemoveMilliSeconds();
        }
    }

    public static class HumanizerExtension
    {
        public static string RemoveMilliSeconds(this string s)
        {
           return s.Replace("millisecond", "").Replace("milliseconds", "");
        }
    }
}




这篇关于如何使人性化器不显示毫秒?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 03:22