Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを出力しています
09:19:30.5070000 午前
でもこんな風になりたかった09:19:30 AM
コードを使用して、文字列の末尾にある余分なミリ秒を削除するにはどうすればよいですか?
に保管されていますtime.Text
time.Text
前もって感謝します。
DateTime.ToString("T")動作するはずです。
DateTime.ToString("T")
string time = "09:19:30.5070000 AM"; StringBuilder sb = new StringBuilder(time); string final = sb.Remove(8, 8).ToString();