07 2012 档案
摘要:原文地址:http://www.dotnetperls.com/levenshteinStrings may be different yet very similar. With theLevenshteindistance algorithm, we measure similarity and match approximate strings with fuzzy logic. Many projects need this logic.Levenshtein distance computationsWords: ant, auntLevenshtein...
阅读全文
摘要:原文地址:http://davefancher.com/2012/04/22/string-distances-9/One of my first projects at Leaf has been trying to match some data read from an OCR solution against what is in the database. As sophisticated as OCR algorithms have become though it’s still not reliable enough to guarantee 100% accurate res
阅读全文
摘要:Response.Clear(); Response.Status = "301 Moved Permanently"; Response.AddHeader("Location", "http://www.baidu.com/"); Response.End(); 状态代码 状态信息 代码含义100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分。101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议200 OK 一切正常,对GET和POST请求的应答文档跟在后面。201 Cr
阅读全文