如何加载包含文本和数字数据的文件?

发布于 2024-07-25 08:48:10 字数 62 浏览 10 评论 0原文

如何加载包含 LOGO 中文本和数字数据的 *.csv 文件?

例如 N 43.876 W

How can I load a *.csv file which includes text and numerical data in LOGO?

e.g. N 43.876 W

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

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

发布评论

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

评论(2

一袭水袖舞倾城 2024-08-01 08:48:10

既然如此,我假设您是在代码中表示意思。

基本上,您正在读取一行,然后对其进行解析(查找逗号、空格、管道以及用于分隔的任何内容),然后进行拆分(大多数语言在其字符串库中支持此操作)以获取值的数组。 如果您知道哪个值应该是 int,那么您可以将其转换。

如果你的意思是这样,你可以自己看看 - 使用记事本、写字板、word、excel、openoffice、pspad、vim、pico,任何你想要的。

编辑:现在您已经包含了更多信息 - 此资源包括文件读取和从LOGO中的文件中提取信息。

Since this is SO I assume you're meaning within code.

Basically you're reading in a line, and parsing it (looking for commas, spaces, pipes, whatever you use to delimit), and doing a split (most languages support this in their string libraries) to get an array of your values. If you know which value should be an int then you convert it.

If you mean so you can look at it yourself - use notepad, wordpad, word, excel, openoffice, pspad, vim, pico, whatever you want.

EDIT: Now that you've included more info - This resource includes file reading and extracting information from files in LOGO.

辞别 2024-08-01 08:48:10

这是一些使用 LOGO 的非常基本的文件 IO 代码。

我在 Windows 上使用了 FMSLogo

假设文件test.csv与fmslogo二进制文件位于同一目录中

OPENREAD "test.csv
SETREAD "test.csv
SHOW READLIST

这里的关键部分是SHOW READLIST,它打印出当前行的内容并移动文件指向下一行的指针。

Here's some very basic File IO code using LOGO.

I used FMSLogo on Windows.

Assuming the file test.csv is in the same directory as the fmslogo binary

OPENREAD "test.csv
SETREAD "test.csv
SHOW READLIST

The key part here is SHOW READLIST which prints out the contents of the current line and the moves the file pointer to the next line.

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