代码改变世界

SOCKET通讯

2012-08-15 18:08 by C#与.NET探索者, 228 阅读, 0 推荐, 收藏, 编辑
摘要:(一)服务端using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.Sockets;using System.Net;using System.Threading;using System.IO;using System.Runtime.Serialization.Fo 阅读全文

正则表达式提取4

2012-08-15 18:07 by C#与.NET探索者, 187 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace 正则表达式案例{ class Program { static void Main(string[] args) { // string reg = "^b.*g$"; //bool b = Regex.IsMatch("baag", "^b.*g$"); //Console.Wr 阅读全文

正则表达式提取练习2

2012-08-15 18:06 by C#与.NET探索者, 225 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace 正则表达式提取练习{ class Program { static void Main(string[] args) { #region 从路径中提取文件名 //string str = @"c:\a\a\a\a\a\a\a\a.sql\a.sql\a.sql\a.sql\b.txt"; ////这种思路不合适。 /// 阅读全文

正则表达式提取(三)

2012-08-15 18:06 by C#与.NET探索者, 457 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.IO;namespace 正则表达式提取{ class Program { static void Main(string[] args) { #region 提取字符串中的数字 //string str = "大家好呀,hello,2010年10月10日是个好日子。恩,9494.吼吼!886"; //////字符 阅读全文

.敏感词过滤

2012-08-15 18:05 by C#与.NET探索者, 994 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using System.Text.RegularExpressions;namespace _03敏感词过滤{ public partial class Form1 : Form { public Form1() 阅读全文

正则表达式替换

2012-08-15 18:05 by C#与.NET探索者, 372 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace _02正则表达式替换{ class Program { static void Main(string[] args) { ////把字符串中所有的空格都替换成一个空格。 //string msg = "hello thank you please u r welcome ."; ////\s+表示:空白符出现一次或多次 阅读全文

提取招聘职位信息

2012-08-15 18:04 by C#与.NET探索者, 187 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Text.RegularExpressions;namespace 提取招聘职位信息{ class Program { static void Main(string[] args) { WebClient client = new WebClient(); client.Encoding = Encoding.GetEncoding("GBK"); s 阅读全文

抓取页面超链接

2012-08-15 18:04 by C#与.NET探索者, 259 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Text.RegularExpressions;namespace 抓取页面超链接{ class Program { static void Main(string[] args) { WebClient client = new WebClient(); client.Encoding = Encoding.UTF8; string html = client.Downl 阅读全文

.不同JQuery版本对disable和checked等属性的处理

2012-08-15 18:01 by C#与.NET探索者, 239 阅读, 0 推荐, 收藏, 编辑
摘要:jquery的checked以及disabled下面只提到checked,其实disabled在jquery里的用法和checked是一模一样的下边两种写法没有任何区别 只是少了些代码而已...-----------------------------------------------------------<input id="cb1" type="checkbox" checked /><input id="cb2" type="checkbox" checked="checked 阅读全文

添加span或删除span例子

2012-08-15 18:00 by C#与.NET探索者, 476 阅读, 0 推荐, 收藏, 编辑
摘要:今天公司项目中遇到这个问题在此给大家分享一下:1.Css部分<style type="text/css"> #bqzhi b{border:1px solid #EAD483;font-weight:normal;margin:3px; background-color:#FEF6CE; cursor:pointer; padding:5px 5px 3px 5px;height:auto;overflow:hidden;} #ysbq{ clear:both;border:1px solid #b8dcea;height:auto;overflow:hidde 阅读全文