文档标签问题

文档1.txt内容:

select * from dwetlv
;
+--------------------------------------------------------------+
insert into ;
select * from xxxxx;
insert into
;
select * from dwetlv
where a='1';

INSERT into ...
select a from xxxx
insert into select *
select *

insert *
where b='123';

select * from xxxxx
;insert into
;




文档2.txt内容:
select
insert
create
del
update

我的目的是 2.txt为关键字标示 从1.txt中找到关键字,并在关键字前面+上[A],在关键字后第一个分号后+[/A],在第一个关键字出现到分号结束中间的其他关键字忽略不加标记

操作系统:HP-UNIX 不要用sed


结果需求1.txt修改:
[A]
select * from dwetlv
;
[/A]

+--------------------------------------------------------------+
[A]
insert into ;
[/A]
[A]
select * from xxxxx;
[/A]
[A]
insert into
;
[/A]
[A]
select * from dwetlv
where a='1';
[/A]

[A]
INSERT into ...
select a from xxxx
insert into select *
select *

insert *
where b='123';
[/A]

[A]
select * from xxxxx
;
[/A]
[A]
insert

into
;
[/A]

作者: sunsansheng_cu   发布时间: 2011-06-16

  1. awk 'BEGIN{
  2.         word1="'[A]'"
  3.         word2="'[/A]'"
  4.         end="'\;'"
  5.         flag=0
  6.         while(getline<"'2.txt'"){
  7.                 keyword[$0]
  8.         }
  9. }
  10. function matchkey(var){
  11.         for(key in keyword){
  12.                 if(index(tolower(var), tolower(key))){
  13.                         flag++
  14.                         return 0
  15.                 }
  16.         }
  17.         return -1
  18. }
  19. {
  20.         if(!matchkey($0)&&flag==1){
  21.                 print word1
  22.         }
  23.         print $0
  24.         if(index($0, end)){
  25.                 flag=0
  26.                 print word2
  27.         }
  28. }'
复制代码

作者: liion631818   发布时间: 2011-06-16



QUOTE:
liion631818 发表于 2011-06-16 11:35




输出结果:在最后一种情况时 会出现问题.
[A]
select * from dwetlv
;
[/A]
+--------------------------------------------------------------+
[A]
insert into ;
[/A]
[A]
select * from xxxxx;
[/A]
[A]
insert into
;
[/A]
[A]
select * from dwetlv
where a='1';
[/A]

[A]
INSERT into ...
select a from xxxx
insert into select *
select *

insert *
where b='123';
[/A]

[A]
select * from xxxxx
;insert into
[/A]
;
[/A]

作者: sunsansheng_cu   发布时间: 2011-06-16

回复 liion631818


    这么大段啊,看着就头疼。呵呵。

作者: zooyo   发布时间: 2011-06-16

回复 sunsansheng_cu
  1. $ awk '/.*;../{sub(";",";\n")}1' raw.txt |awk 'BEGIN{IGNORECASE=1}NR==FNR{a[$1]=1;next}a[$1]&&!p{$0="[A]\n"$0;p=2}p==2&&/;/{sub(";",";\n[/A]");p=0}1' keyword.txt -
复制代码

作者: yinyuemi   发布时间: 2011-06-16

回复 sunsansheng_cu


    借楼上SS大牛的代码,先在分号后面加换行awk '/.*;../{sub(";",";\n")}1' raw.txt | 。。。

作者: liion631818   发布时间: 2011-06-16



QUOTE:
回复  liion631818


    这么大段啊,看着就头疼。呵呵。
zooyo 发表于 2011-06-16 11:51




   
    awk用的不熟哦,只能用这种直白的代码咯,SS大牛的代码看了半天才明白

作者: liion631818   发布时间: 2011-06-16

同样不懂.. 想问~~~

作者: sunsansheng_cu   发布时间: 2011-06-16



QUOTE:
回复  sunsansheng_cu
yinyuemi 发表于 2011-06-16 11:58



大牛的代码 貌似也没解决,这个问题,最后一个举例的:
原文:
select * from xxxxx
;insert into
;
修改后的:
[A]
select * from xxxxx
;
[/A]insert into
;

作者: sunsansheng_cu   发布时间: 2011-06-16

回复 sunsansheng_cu

你是说:
如果原文是
  1. select * from xxxxx
  2. ;insert into
  3. ;
复制代码
的话,修改后应该是
  1. [A]
  2. select * from xxxxx
  3. ;
  4. [/A]insert into
  5. ;
复制代码
么?

作者: yinyuemi   发布时间: 2011-06-16