项目作者: MarQuisKnox

项目描述 :
RegEx for Eclipse
高级语言:
项目地址: git://github.com/MarQuisKnox/Eclipse_RegEx.git
创建时间: 2015-08-14T11:56:08Z
项目社区:https://github.com/MarQuisKnox/Eclipse_RegEx

开源协议:GNU Affero General Public License v3.0

下载


Eclipse RegEx

RegEx for Eclipse

Find SQL ID values

  1. VALUES\([0-9]+,

Find a comma followed by anything

  1. \,+(.*)

Find a comma followed by two quotation marks & a blank line

  1. \,""+(\n)

Find a comma followed by a line break

  1. \,+(\n)

Find SQL comments

  1. /+(.*)/;

Find Blank Lines

  1. ^\s*\n