查找文本并替换特定元素并对其进行格式化

时间:2017-09-19 12:19:11

标签: string replace format

我见过一个网站,您可以使用特定代码在文本中查找某些元素,例如:

5320  Agedrup

在这里,我可以选择第一个元素5320,并告诉它将其格式化为(5320),以及' ,'而不是两个空格,最后一个元素添加另一组()

所以我看起来像这样:

(5320),(Agedrup)

它可用于选择数百个这些行,同时格式化,节省时间。

我不知道它是官方编码语言,还是它是哪个网站...... 希望有人知道我在说什么..

1 个答案:

答案 0 :(得分:0)

发现它,它是RegExr.com, 使用正则表达式,我可以选择并替换和格式化它。

做到了:

two spaces first, to match the space between postalnumber and cityname replaced with ,"
then \n to find the start and end of line and replace with "),(

通过创建(5330," munkebo")为sql做好准备。