将字符串值转换为动作脚本中的等效度量值?
谁能建议字符串值公制转换的最佳方法? 例如距离值和温度
例如说我有一个包含一些未知英寸值的字符串
并且英寸符号可以是正确的双引号或双引号。
因此,我猜测第一步我会搜索前面带有数字值的双引号或双引号,然后解析并转换该数字值。 但这似乎并不万无一失,因为它实际上是双引号,而不是英寸符号
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样分割输入字符串:
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()
orparseFloat()
.