免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1818 | 回复: 5
打印 上一主题 下一主题

求救:从文本中提取信息的shell函数实现过程 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-24 14:37 |只看该作者 |倒序浏览
需求:
现有文本test.txt
内容为:
         Connection><DataSource modified='1' type='string'><![CDATA[xdatasourcex]]></DataSource><Username modified='1' type='string'><![CDATA[xusernamex]]></Username><Password modified='1' type='protectedstring'><![CDATA[xpasswordx]]></Password></Connection><Usage><WriteMode type='int'><![CDATA[xwritemodex]]></WriteMode><GenerateSQL modified='1' type='bool'><![CDATA[xgene is wom ratesqlx]]></GenerateSQL><TableName modified='1' type='string'><![CDATA[xtablenamex]]></TableName>

我想写一个函数getinfo,实现的功能如下:
getinfo DataSource test.txt得到的输出为xdatasourcex
getinfo Username test.txt得到的输出为xusernamex
getinfo GenerateSQL test.txt得到的输出为xgene is wom ratesqlx

论坛徽章:
0
2 [报告]
发表于 2009-06-24 14:56 |只看该作者

  1. #!/bin/sh
  2. grep -Po '(?<=CDATA\[)[^]]*(?=\]\]></'$1'>)' $2
复制代码

论坛徽章:
0
3 [报告]
发表于 2009-06-24 15:01 |只看该作者

回复 #2 kwokcn 的帖子

谢谢,我去试一下啊.

论坛徽章:
0
4 [报告]
发表于 2009-06-24 15:09 |只看该作者
awk -F $1 '{print $2}' tmp.txt|cut -f 3 -d [ | cut -f 1 -d ]>test.txt

论坛徽章:
0
5 [报告]
发表于 2009-06-24 15:10 |只看该作者

回复 #2 kwokcn 的帖子

谢谢大侠,完全正确,佩服佩服.
我的这个
#!/bin/sh
fin=$1
fn=$2
awk 'BEGIN{FS="'$fin'"}{print $2}' ${fn}|awk -F'[' '{print $3}'|awk -F']' '{print$1}'
不能用.

论坛徽章:
0
6 [报告]
发表于 2009-06-24 15:37 |只看该作者

  1. $  a=DataSource
  2. $ sed 's/.*\<'$a' [^[]*\[[^[]*\[\([^]]*\)\]\].*/\1/g' 1
  3. xdatasourcex
  4. $ a=Username
  5. $ sed 's/.*\<'$a' [^[]*\[[^[]*\[\([^]]*\)\]\].*/\1/g' 1
  6. xusernamex
  7. $ a=Password
  8. $ sed 's/.*\<'$a' [^[]*\[[^[]*\[\([^]]*\)\]\].*/\1/g' 1
  9. xpasswordx
  10. $ cat 1
  11. Connection><DataSource modified='1' type='string'><![CDATA[xdatasourcex]]></DataSource><Username modified='1' type='string'><![CDATA[xusernamex]]></Username><Password modified='1' type='protectedstring'><![CDATA[xpasswordx]]></Password></Connection><Usage><WriteMode type='int'><![CDATA[xwritemodex]]></WriteMode><GenerateSQL modified='1' type='bool'><![CDATA[xgene is wom ratesqlx]]></GenerateSQL><TableName modified='1' type='string'><![CDATA[xtablenamex]]></TableName>
  12. [mon724@724AS5 ~]$
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP