gpt4 book ai didi

julia - 在 Julia 中创建文本文件

转载 作者:行者123 更新时间:2023-12-05 01:05:05 29 4
gpt4 key购买 nike

我有一个字符串

a = """
---
title: Just a test
author: Me
date: 2022-01-03
---

# Test Header
Some text.
"""

我想从中创建一个文件 foobar.jmd。这样做的最佳方法是什么?

最佳答案

fname = "foobar.jmd"
dirpath = "/tmp"
fpath = joinpath(dirpath, fname)

open(fpath, "w") do file
write(file, a)
end

更多示例,例如这里 https://en.wikibooks.org/wiki/Introducing_Julia/Working_with_text_files

关于julia - 在 Julia 中创建文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71033626/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com