如何将变量转换为字符串?
例如,这样它就可以像这样工作 toString(Var x)=“x”
For example so that it works like this
toString (Var x)= "x"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
例如,这样它就可以像这样工作 toString(Var x)=“x”
For example so that it works like this
toString (Var x)= "x"
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用
show
函数:将打印出“x”变量。 (当然,您不需要将它与
putStrLn
一起使用,或者 -show
返回一个可以像字符串一样在任何地方使用的字符串。)Use the
show
function:will print out the "x" variable. (Naturally, you don't need to use it with
putStrLn
, either --show
returns a string that can be used anywhere like a string.)如果我理解正确的话,您是在问如何将编程结构转换为字符串。 您并不关心“x”代表什么,而是关心程序员在源文件中将其称为“x”。
您可以使用一些“废弃您的样板”组件将数据构造函数转换为字符串。 这是一个符合您要求的示例。
输出:
对于一个真实的例子,我建议查看 RJson 库。
If I understand you correctly, you're asking how to convert programming constructs into strings. You aren't concerned with what 'x' represents so much as you are that the programmer called it "x" in the source file.
You can convert data constructors into strings using some of the Scrap Your Boilerplate components. Here's an example that does just what you asked.
output:
For a real example, I suggest looking at the RJson library.