gpt4 book ai didi

ruta - UIMA 鲁塔 : script for the combination of chars and numbers

转载 作者:行者123 更新时间:2023-12-02 03:34:35 24 4
gpt4 key购买 nike

我刚开始使用 Ruta,我想编写一个规则来查找字符、数字和点 (.) 的任意组合。

(JAVA 正则表达式 - ([a-z0-9.]+) )

例如-

abcd.03ef0.3abc

03a.bcd.03eeff903a.bc

最佳答案

类似下面的内容:

(SW | NUM | PERIOD)+{-> MyType};

或者如果还应包括大写字符:

(W | NUM | PERIOD)+{-> MyType};

之前更改过滤设置,如果中间没有空格:

Document{-> RETAINTYPE(SPACE,BREAK,MARKUP)};

为了避免重叠匹配,您可以使用 MARKONCE 而不是隐式操作、附加(否定)条件 -PARTOF(MyType),或者使用 GREEDYANCHORING 更改匹配策略。

关于ruta - UIMA 鲁塔 : script for the combination of chars and numbers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24430899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com