码迷,mamicode.com
首页 >  
搜索关键字:in section __text    ( 55715个结果
网络挖掘技术——text mining
一、中文分词:分词就是利用计算机识别出文本中词汇的过程。 1.典型应用:汉字处理:拼音输入法、手写识别、简繁转换 ;信息检索:Google 、Baidu ;内容分析:机器翻译、广告推荐、内容监控 ;语音处理:语音识别、语音合成 。 2.分词难点:歧义、新词等。 3.分词技术:机械分词(查词典FMM/...
分类:其他好文   时间:2014-06-07 06:04:35    阅读次数:511
发送邮件
private void SendMail() { MailMessage mailMsg = new MailMessage(); mailMsg.To = tbToEmail.Text; mailMsg.From = tbEmail.Text; mailMsg.Subject ...
分类:其他好文   时间:2014-06-07 05:31:09    阅读次数:235
【windows核心编程】DLL相关
DLL相关的东西1、DLL的加载方式隐式:#pragma comment(lib, "XX.lib");编译器去查找名为XX.dll的DLL,除了名字相同,该DLL和该LIB的GUID也相同。显式:HINSTANCE hInst = LoadLibrary(TEXT("XX.dll"));if(N....
分类:Windows程序   时间:2014-06-07 05:19:21    阅读次数:439
sublime text 2(2.02)注册码
-----BEGINLICENSE-----AndrewWeberSingleUserLicenseEA7E-855605813A03DD5E4AD9E66C0EEB94BC99798F942194A602396E98E62C99794BB979FE91424C9DA45400BFF6747D882...
分类:其他好文   时间:2014-06-07 04:40:01    阅读次数:182
jQuery的getText()方法源码
/** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getTex...
分类:Web程序   时间:2014-06-07 03:37:39    阅读次数:240
第 2 章 编写 C# 程序
2.1 Visual Studio 2005开发环境2.2 控制台应用程序 试试看:创建一个简单的控制台应用程序using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace C....
分类:其他好文   时间:2014-06-07 03:00:19    阅读次数:241
viewstate加密(转)
ViewState在客户端展开的时候,默认是Auto,不加密的,如果页面有限制性的表单控件才加密,所以,可以查看,代码如下: byte[] bytes = Convert.FromBase64String(ViewStateTextBox.Text); DecodedDataTextBox.Text...
分类:其他好文   时间:2014-05-28 19:04:41    阅读次数:659
C#.net word excel powerpoint (ppt) 转换成 pdf 文件
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Web程序   时间:2014-05-28 18:29:46    阅读次数:378
Android xml资源文件中@、@android:type、@*、?、@+含义和区别
一.@代表引用资源1.引用自定义资源。格式:@[package:]type/nameandroid:text="@string/hello"2.引用系统资源。格式:@android:type/name android:textColor="@android:color/opaque_red"注意:其...
分类:移动开发   时间:2014-05-28 12:52:09    阅读次数:329
SQL 常用语句
–-表现最差的前10名使用查询SELECT TOP 10 ProcedureName = t.text, ExecutionCount = s.execution_count, AvgExecutionTime = isnull ( s.total_elapsed_time / s.executio...
分类:数据库   时间:2014-05-28 11:25:22    阅读次数:449
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!