<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_火车头的Blog!</title><subtitle type="text">火车，沉稳、快速的前进</subtitle><id>http://feed.cnblogs.com/blog/u/17273/rss</id><updated>2008-10-22T04:22:42Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/17273/rss"/><entry><id>http://www.cnblogs.com/locoy/archive/2007/01/27/631823.html</id><title type="text">正则贪婪模式/修饰符</title><summary type="text">5贪婪模式：前面在元字符中提到过"?"还有一个重要的作用，即"贪婪模式"，什么是"贪婪模式"呢？比如我们要匹配以字母"a"开头字母"b"结尾的字符串，但是需要匹配的字符串在"a"后面含有很多个"b"，比如"a bbbbbbbbbbbbbbbbb"，那正则表达式是会匹配第一个"b"还是最后一个"b"呢？如果你使用了贪婪模式，那么会匹配到最后一个"b"，反之只是匹配到第一个"b"。 使用贪婪模式的表达...</summary><published>2007-01-27T02:54:00Z</published><updated>2007-01-27T02:54:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2007/01/27/631823.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2007/01/27/631823.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/29/543867.html</id><title type="text">使用 MatchEvaluator 委托 对有汉字的整个url进行编码</title><summary type="text">采集项目中，因为经常会碰到中文的url,需要对整个url进行编码呵呵，代码最能说明问题，大家看吧System.Text.RegularExpressions.MatchEvaluatorme=newSystem.Text.RegularExpressions.MatchEvaluator(cnUrlEncode);stringurl="http://community.csdn.net/中国人/E...</summary><published>2006-10-29T13:05:00Z</published><updated>2006-10-29T13:05:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/29/543867.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/29/543867.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/28/542751.html</id><title type="text">CONCAT_WS的用法 </title><summary type="text">从数据库里取N个字段，然后组合到一起用&amp;#8220;，&amp;#8221;分割显示，起初想到用CONCAT（）来处理，好是麻烦，没想到在手册里居然有提到CONCAT_WS（），非常好用。CONCAT_WS(separator, str1, str2,...) 它是一个特殊形式的 CONCAT()。第一个参数剩余参数间的分隔符。分隔符可以是与剩余参数一样的字符串。如果分隔符是 NULL，返回值也将为 NU...</summary><published>2006-10-28T06:17:00Z</published><updated>2006-10-28T06:17:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/28/542751.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/28/542751.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/27/541845.html</id><title type="text">C#写的一段解析 CSV 文件的代码 选择自 redv 的 Blog </title><summary type="text">我们经常将Excel格式的文件保存为csv格式以方便上传和修改，可是当数据中包含逗号和双引号的时候Excel会把该字段用双引号括住并把数据中的"改为""，usingSystem;/**//***TheCommaSeparatedValue(CSV)FileFormat:http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm*描述：解析CSV格式的文...</summary><published>2006-10-27T06:14:00Z</published><updated>2006-10-27T06:14:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/27/541845.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/27/541845.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/23/537164.html</id><title type="text">盗链-真实地址嗅探</title><summary type="text">无聊之作，呵呵，发现对一些大的下载站及一些bt站的测试效果良好，只使用于以http方式下载的站点，ftp尚待研究得到当前下载文件的url的真实文件地址：http://www.locoy.com/geturl/</summary><published>2006-10-23T04:57:00Z</published><updated>2006-10-23T04:57:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/23/537164.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/23/537164.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/23/537160.html</id><title type="text">本地MD5 SHA-1 函数 的JS实现</title><summary type="text">刚刚一段代码由于考虑用户体验要用js实现，但要传隐秘信息到服务器验证，找到该函数，测试成功，不支持中文， 但对通常的密码加密已足够使用方法&amp;lt;script type="text/javascript" src="md5.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;script type="text/javascript" &amp;gt;hash = hex_md5("input string...</summary><published>2006-10-23T04:54:00Z</published><updated>2006-10-23T04:54:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/23/537160.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/23/537160.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/18/532717.html</id><title type="text">The Atalasoft OCR engine</title><summary type="text">IntroductionAt Atalasoft, we&amp;#8217;re excited to unveil the newest addition to our product line, Atalasoft OCR. This suite of objects, now available, provides interfacing to OCR engines in a way that ...</summary><published>2006-10-18T09:15:00Z</published><updated>2006-10-18T09:15:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/18/532717.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/18/532717.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/18/531944.html</id><title type="text">给TreeList的根和子节点弹出不同的右键菜单 </title><summary type="text">好象没几个人用dev的treelist,好早就想实现这个效果，经过一个多小时的摸索，终于找到了实现方法定义两个不同的popup contentMenu在mouse_down事件中处理privatevoidJobTree_MouseDown(objectsender,MouseEventArgse){if(e.Button==MouseButtons.Right){DevExpress.XtraTr...</summary><published>2006-10-17T16:02:00Z</published><updated>2006-10-17T16:02:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/18/531944.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/18/531944.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/16/530008.html</id><title type="text">ASCII码对照表[备忘]</title><summary type="text">ASCII码表 　　 信息在计算机上是用二进制表示的，这种表示法让人理解就很困难。因此计算机上都配有输入和输出设备，这些设备的主要目的就是，以一种人类可阅读的形式将信息在这些设备上显示出来供人阅读理解。为保证人类和设备，设备和计算机之间能进行正确的信息交换，人们编制的统一的信息交换代码，这就是ASCII码表，它的全称是&amp;#8220;美国信息交换标准代码&amp;#8221;。 　 八进制 十六进制 十进制...</summary><published>2006-10-16T02:12:00Z</published><updated>2006-10-16T02:12:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/16/530008.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/16/530008.html"/></entry><entry><id>http://www.cnblogs.com/locoy/archive/2006/10/02/520221.html</id><title type="text">input和select表单合二为一</title><summary type="text">&amp;lt;inputstyle="width:100px;height:20px;"value="--------"onkeydown="if(event.keyCode==13)saveUinList(value)"onkeypress="return(event.keyCode&amp;gt;=48&amp;amp;&amp;amp;event.keyCode&amp;lt;=57)"id="textUin"onclick="...</summary><published>2006-10-02T09:22:00Z</published><updated>2006-10-02T09:22:00Z</updated><author><name>_火车头_</name><uri>http://www.cnblogs.com/locoy/</uri></author><link rel="alternate" href="http://www.cnblogs.com/locoy/archive/2006/10/02/520221.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/locoy/archive/2006/10/02/520221.html"/></entry></feed>
