谁能提供自然语言语法词法分析的信息

Eric_Hu 2000-04-01 01:03:00
谁能提供自然语言(不是计算机语言,是自然语言)语法词法分析的有关网站、书籍或者杂志的信息
...全文
331 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
Eric_Hu 2000-04-03
  • 打赏
  • 举报
回复
感谢 vchuman 提供的信息

知网的网址是 www,how-net.com

国内外相关网址 www.mindnet.com
www.wordnet.com
www.ics.cs.neu.edu.cn
nlg3.csie.ntu.deu.tw
King 2000-04-03
  • 打赏
  • 举报
回复
在哪里?在那里?
vchuman 2000-04-02
  • 打赏
  • 举报
回复
快到知网去那里有完整的信息!
是董教授10几年的心血,如果你成功了,将会为中国人开创新的未来!
King 2000-04-01
  • 打赏
  • 举报
回复
读大学的时侯看过一本超过电话簿的书(名字忘了),看完了也不过略知一二,只知道实现的原理,首先得有一个足够大的数据库放字、词库、短语(这写好象叫语法基本单位),然后用一个足够复杂的数据结构确保每一基本单位的上下文环境,还涉及很多细节的问题,例如新语言学习功能、语音识别和容错等等等等。恐怕不是一两个人能在PC上做出来的,看看金山快译就知道了。
riceball 2000-04-01
  • 打赏
  • 举报
回复
目前我在写一个字符串模式匹配控件,还没有写完,在编写调试中,头都写大了,当前实现了:
* Patterns can contain several special character for wild-card matching:
* match any number of characters or white space
? match a single character
%d match any number of digits (0-9)
%n match a number that starts with a + or - sign - 没有实现
%w match any number of alpha characters (a-z) (a word)
%a match any number of alphanumeric characters (a-z,0-9)
%s match any amount of white space (spaces, tabs)
%x match any amount of non-white space
%yc catch chars until find Special char: 'c'(c would not include).(匹配直到发现指定的字符:c, 支持中文字符)
[range] match any amount of characters listed in range (不支持中文字符)
^ force pattern to match starting at the beginning of the line
$ force pattern to match ending at the end of the line
(pattern) save the matched pattern in a parameter * ~ quote the next character to prevent it to be interpreted as a wild card.
~~ match a quote character verbatim
{val1 and val2 and val3 and ...} match any of the specified strings - 没有实现
{^string} do not match the specified string - 没有实现
&nn matches exactly nn characters (fixed width pattern) - 没有实现
&VarName assignes the matched string to the given variable - 没有实现


To save any part of the pattern to the parameters, enclose the part of the
parameter in parenthesis.

In specifying a range, you can list specific characters such as [abc] or you can use
a range [a-c]. To use a wild card character in the string itself, preceed the special
character with the ~ quote character. For example, the pattern ~[test~] will match the
string [test] rather than being interpreted as a range wild-card pattern.
Note that the quote character can be changed in the Preferences section.

To match a blank line, use the $ pattern by itself.
To match multiple lines include $ in the middle of the pattern to match the line boundry.

You can also include variables in your pattern, and the name of the variable will be replaced
with its value before the pattern match is performed.

33,006

社区成员

发帖
与我相关
我的任务
社区描述
数据结构与算法相关内容讨论专区
社区管理员
  • 数据结构与算法社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧