在线工具大全
首页
编码
字符串
倒计时
时间
单位转换
站点地图
检索
首页
字符串工具大全
去多余换行
去多余换行
3
请在下面输入要
"去多余换行"
的字符或文本
(每一行为一个单元)
:
去多余换行
下面是
"去多余换行"
后的结果:
预览效果
相关功能
文字拆分
去除所有空格
去除重复项
在线非打印字符检测与处理工具
去前空格
去后空格
去前后空格
去所有空格
去所有换行符
去除重复项
获取重复项
移除HTML标签
最近查询记录
∀ ∁ ∂ ∃ ∄ ∅ ... ⏺ ⏻ ⏼ ⏽ ⏾ ⏿ 去多余换行
09-13 11:51
window.formatXML = function (xml, tab) { 2. var formatted = '', indent = ''; 3. tab = tab || ' '; 4. xml.split(/>\s*</).forEach(function (node) { 5. if (node.match(/^\/\w/)) indent = indent.substring(tab.length); 6. formatted += indent + '<' + node + '>\r\n'; 7. if (node.match(/^<?\w[^>]*[^\/]$/)) indent += tab; 8. }); 9. return formatted.substring(1, formatted.length - 3); 10.} 去多余换行
02-23 21:30