如何以坚固性将字符串转换为字节8?
我在函数中获得字符串参数,并且参数的长度小于8。 我想将此参数转换为字节8以保存数组。 如何转换?
例如 :
pragma solidity 0.8.0;
contract MyContract{
bytes8 [] Names;
function setName(string memory _name) public{
Names.push(_name);
}
}
I get string parameter in the function, and the length of the parameter is less than 8.
and I want to convert this parameter to bytes8 for saving in the array.
How to convert it?
for example :
pragma solidity 0.8.0;
contract MyContract{
bytes8 [] Names;
function setName(string memory _name) public{
Names.push(_name);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码在
solidity 0.8.7
有效或坚固性时,您可以将BYTES8作为参数传递
,当您在前端调用此字符时,将字符串转换为Bytes8,然后将其作为参数传递
This code in
solidity 0.8.7
worksOr in solidity you could pass bytes8 as argument
when you call this in front end, you convert the string to bytes8 and then pass it as argument