将字符串值转换为动作脚本中的等效度量值?

发布于 2024-12-08 12:26:05 字数 172 浏览 0 评论 0原文

谁能建议字符串值公制转换的最佳方法? 例如距离值和温度

例如说我有一个包含一些未知英寸值的字符串

并且英寸符号可以是正确的双引号或双引号。

因此,我猜测第一步我会搜索前面带有数字值的双引号或双引号,然后解析并转换该数字值。 但这似乎并不万无一失,因为它实际上是双引号,而不是英寸符号

Can anyone suggest the best approach for metric conversion of string values?
for instance distance values,and temperatures

For instance say I have a string containing some unknown inches value

And the inches sign can either be the proper double prime OR double quotes.

So, I'm guessing as a first step I would search for double prime or double quotes preceded by a number value, then parse out and convert this number value.
But this doesn't seem foolproof for instances when it is actually a doublequote, NOT an inches sign

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

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

发布评论

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

评论(1

北笙凉宸 2024-12-15 12:26:05

您可以像这样分割输入字符串:

split('"')

或这样:

split("''")

然后将返回数组的结果传递给 parseInt()parseFloat()

You can split your input string like this:

split('"')

or this:

split("''")

Then pass the results of the returned array to parseInt() or parseFloat().

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