gpt4 book ai didi

matlab - 如何将属性 _value 对添加到 txt 文件并按字母顺序对它们进行排序

转载 作者:行者123 更新时间:2023-12-02 03:50:48 24 4
gpt4 key购买 nike

我想在包含属性值对的 txt 文件中添加属性值对,属性应按字母顺序排序,其中属性位于方括号之间,其值在下一行中。这是一个示例文件:除此之外,我想忽略以“#”开头的注释行。

#
[system]
#
programming
#
[information]
#
application

喜欢:-

function [] = updateFile( fileName,property,propertyValue )

% all inputs in strings
%
rfh = fopen( fileName, 'r' ); % read handle
tname = tempname(); % temporary file name
wfh = fopen( tname, 'w' )

在这个例子中,“系统”是一个属性,“编程”是它的值。同样,“信息”是另一个属性,“应用程序”是它的值。

我想用属性值对调用我的函数,并用新的属性值对更新 txt 文件。

最佳答案

由于您正在更新文件,因此您应该以“追加”模式打开它。您使用 sort 函数对数据进行排序。假设变量 propertypropertyValue 是元胞数组,您的代码将如下所示

function [] = updateFile( fileName,property,propertyValue )

% all inputs in strings

fid = fopen(fileName, 'a' ); % file handle
[property_sorted,sort_index] = sort(property); % sort file
for count = 1:length(sort_index)
fprintf(fid,'%s\n%s\n',property_sorted(count),propertyValue(sort_index(count)));
end

fclose(fid);

有关更多信息,请参阅排序文档 (doc sort)。

关于matlab - 如何将属性 _value 对添加到 txt 文件并按字母顺序对它们进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14390517/

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