我想知道如何在 HDF5 属性字符串下方添加换行符。
DescType_id = H5T.copy ('H5T_C_S1');
H5T.set_size (DescType_id, numel(description));
H5T.set_strpad(DescType_id,'H5T_STR_NULLTERM');
DescAttr_id = H5A.create (g2id, 'description', DescType_id, ...
STimeSpace, 'H5P_DEFAULT');
H5A.write (DescAttr_id, DescType_id, description);
H5T.close(DescType_id);
H5A.close(DescAttr_id);
我的描述变量是:
description="Experiment:\nID: 1234\nLocation: London"
我希望换行符在上面的代码中类似于 '\n' 。预期输出:
Group '/'
Group '/G1'
Attributes:
'description': 'Experiment:
ID: 1234
Location: London'
非常感谢您的帮助。谢谢。