[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
是不是这种结果?
be
n.
1.a light strong brittle grey toxic bivalent metallic element
v.
1.have the quality of being; (copula, used with an adjective or a predicate noun)
2.be identical to; be someone or something
3.occupy a certain position or area; be somewhere
4.have an existence, be extant
5.happen, occur, take place
6.be identical or equivalent to
7.form or compose
8.work in a specific place, with a specific subject, or in a specific function
9.represent, as of a character on stage
10.spend or use time
11.have life, be alive
12.to remain unmolested, undisturbed, or uninterrupted -- used only in infinitive form
13.be priced at

都这个当老师了还这么小肚鸡肠,胸襟大一点好不好?别人说你几句能不能别太当回事?

TOP

本帖最后由 523066680 于 2016-8-30 11:59 编辑

  • open $SRC,"<:raw", "be.txt" or die "$!";
  • open $DST,">:raw", "dst.txt";

  • my $n = 0;
  • my $begin = 0;

  • for my $e (<$SRC>)
  • {
  •     $n++ if ($begin == 1);

  •     if ($e=~/\w+\./)
  •     {
  •         $begin = 1;
  •         $n = 0;
  •     }

  •     if ($n > 0)
  •     {
  •         print $DST "${n}.";
  •     }

  •     print $DST $e;
  • }

  • close $SRC;
  • close $DST;


Perl,
应该有人一两行命令可以解决。

TOP

回复 14# happy886rr


    他应该还是在折腾单词翻译的事情,词汇解释下分不同类型 v.  n. vt. ...  动词 名词
不同类型下有不同解释/造句/例子,给这些条目编号。

TOP

学而不思则罔,思而不学则"die"

英文:die,  通"殆"

TOP

本帖最后由 523066680 于 2016-8-31 12:00 编辑

大致匹配就行了
从样本可见,一般这种“词类”的缩写都是独占一行
可以像这样限定
  1. /^\w+\.\r?$/
复制代码
再严格一点的,它们应该都是小写
  1. /^[a-z]+\.\r?$/
复制代码

TOP

返回列表