我有几千行,每行有相同的结构,我必须编辑它的一部分。
"650","4","The lenght of this part varies, Here's some commas, here, and, there"
"203","4","Now this is shorter, Don't edit these commas, here"
"102","4","Really short, More commas, incoming"
上面应该编辑到这个,即添加撇号。
"650","4","The lenght of this part varies", "Here's some commas, here, and, there"
"203","4","Now this is shorter", "Don't edit these commas, here"
"102","4","Really short", "More commas, incoming"
如何选择之后的第一个逗号 “4”,” ?我正在使用Sublime Text 2,它支持正则表达式。
自从我上次需要正则表达以来已经这么多年了,所以要温柔。提前致谢!
","[._[:alnum:]-0-9]+"