Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はxmlファイルを読み、それを別の値と比較する行を取得します:
xmlLine = fgets(fid);
与える:
xmlLine = <a="true" value="toto">
xmlLine を取得してスペースを削除するときに必要です (ここでは、先頭の前に 6 つのスペースがあります)
何か案が?
strtrimトリックを行います:
strtrim
strtrim(' <a="true" value="toto">')
この関数は、文字列の先頭と末尾から余分な空白を削除します。