加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

XML格式化缩进标签匹配 – Linux

发布时间:2020-12-16 07:55:15 所属栏目:百科 来源:网络整理
导读:我有一个 XML文件,其格式是相当压缩的,所有标签都粘在一起 PersonalDataIndividualDetailsTitleMr/TitleGenderMale/GenderFirstNameHae/FirstNameSurnameJONES/SurnameOccupationBanker/OccupationDateofBirth4/6/76/DateofBirthLastKnownAddress/LastKnownA
我有一个 XML文件,其格式是相当压缩的,所有标签都粘在一起
<PersonalData><IndividualDetails><Title>Mr</Title><Gender>Male</Gender><FirstName>Hae</FirstName><Surname>JONES</Surname><Occupation>Banker</Occupation><DateofBirth>4/6/76</DateofBirth><LastKnownAddress></LastKnownAddress><LastKnownPostCode>00145</LastKnownPostCode><OtherNames></OtherNames></IndividualDetails><OccupationDetails><Company>SD Bank</Company><CompanyAddress>Sunset Boulevard NY</CompanyAddress><ContactNo>335698457</ContactNo></OccupationDetails></PersonalData>

shell中是否有任何可以正确格式化标签的命令.如果不缩进,只需将标签添加到自己的行也可以解决我的问题.

xmllint --format <your-xml-file>

$cat test.xml
<a><b>c</b></a>
$xmllint --format test.xml
<a>
  <b>c</b>
</a>
$xmllint --format test.xml > test.formatted.xml
$cat test.formatted.xml
<a>
  <b>c</b>
</a>
$

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读