RTRIM 仅最后 3 位数字

发布于 2024-10-18 10:48:15 字数 147 浏览 2 评论 0原文

我有一个数字,我想修剪最后 3 位数字,它们总是零,但是对于这个数字,我有四个零,如果我使用 rtrim 删除零,它会删除其中的四个零。下面是示例

rtrim(15,250,000 ,“0”)

我想要的是仅删除最后三个零,

谢谢..

I have a figure to and i want to trim the last 3 digits which are always zeros,but for this one i have four zeros and if i use the rtrim to remove the zeros it removes four of them.Below is and example

rtrim(15,250,000,"0")

what i want is to remove only the last three zeros

thank you..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱花细雨 2024-10-25 10:48:15

如果它始终是一个数字,那么将其保留为数字而不是字符串并简单地除以 1000 怎么样?

If it's always a number how about keeping it as a number instead of a character string and simply dividing by 1000?

零度° 2024-10-25 10:48:15

如果它们始终为零,那么简单地保留从字符串开头开始并延伸到字符串长度减去三个字符的子字符串怎么样?

If they are always zeroes, how about simply keeping the substring that starts at the beginning of the string and extends to the length of the string minus three characters?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文