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.
これは簡単だと思いますが、次のようにASP.net(VB)を使用して動的に数値を表示する必要がある場合:
1.5 => 1.5
2.0 => 2
1.25 => 1.25
次を使用してゼロをトリミングできますTrimEnd。
TrimEnd
string formatted = "2.0".TrimEnd(new char[] { '0', '.' });