0

我希望能够搜索像“CREATE TABLE”这样的模式,后跟任何表达式,包括换行符并以 ) 结尾;

所以应该可以依次选择以下2个create table stamtement。

create table tab1 ( col1 number,

col2 date);

create table tab3 ( col1 number,

col2 date,

col3 number);

我确实尝试过 create table .* 但我无法包含 newline 。

谢谢。

4

1 回答 1

1

这应该这样做:

create table [^;]*;

检查匹配换行符复选框

于 2014-01-16T21:22:44.117 回答