减少白色空间的数量

时间:2016-10-21 08:39:19

标签: regex notepad++ dreamweaver

我需要减少大量文件中的空格数量。例如:

tree house      big small like      go down up
         nice good  2323'0'-., 123       1234lk  

我希望它是这样的:

 tree house big small like go down up nice good  2323'0'-., 123 1234lk      

它应该像这样的逻辑,但我不知道如何做到这一点: 一个白色空间|一个或多个空格|任何符号字符不是空格|一个空白

在替换部分它应该是这样的: 一个空白| & 1 |一个空白

这是一些逻辑,但如果我知道该怎么做,我就不会问问题。

此致 内博伊沙

2 个答案:

答案 0 :(得分:0)

你需要简单的正则表达式。

 regexp_replace(str,'\s+',' ','m'); 

'm' - 修改多行

答案 1 :(得分:0)

在notepad ++中

let button = UIButton(type: .system)
button.frame = CGRect(x: 100, y: 100, width: 100, height: 100)
button.setTitle("set here", for: .normal)
button.addTarget(self, action: #selector(TableViewController.actionButtonTocuh), for: .touchUpInside)
button.titleLabel?.textColor  = #colorLiteral(red: 0.1019607857, green: 0.2784313858, blue: 0.400000006, alpha: 1)
view.addSubview(button)

更改为简单空间