摘要: 查找所有的TD区域(最短):<td\s*.*>\s*.*<\/td>查找所有的TR:<tr.*(?=>)(.|\n)*?</tr>查找所有的TD:<td.*(?=>)(.|\n)*?</td>正则表达式匹配Html标签例1.以下是一段Html代码<table boder="0" width="11%" class="somestory"><tr><td width="100%"><p align=&qu 阅读全文
posted @ 2012-08-29 23:21 安度 阅读(46880) 评论(0) 推荐(2) 编辑
摘要: WebClient读取网络数据 C#读取网络文件数据,可以由下面这个函数实行:System.Net.WebClient类可以支持直接从网络上读取数据,下面列举下有用的方法:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- WebClient.DownloadData (String) ... 阅读全文
posted @ 2012-08-29 15:55 安度 阅读(1607) 评论(1) 推荐(0) 编辑
摘要: c#利用WebClient和WebRequest获取网页源代码的比较2011-11-28 10:26:42 我来说两句收藏我要投稿 [字体:小大]C#中一般是可以利用WebClient类和WebRequest类获取网页源代码。下面分别说明这两种方法的实现。WebClient类获取网页源代码WebClient类 WebClient类位于System.Net命名空间下,WebClient类提供向URI标识的任何本地、Intranet或Internet资源发送数据以及从这些资源接收数据的公共方法。源代码///引用命名空间using System.IO;using System.Net;using . 阅读全文
posted @ 2012-08-29 15:18 安度 阅读(343) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 检测密码是否能过强度检测(正则表达式检测) /// 要求密码长度最少8位最多25位,包含至少1个特殊字符,2个数字,2个大写字母和一些小写字母 /// </summary> /// <param name="password">密码明文</param> public static bool CheckPasswordStrangth(string username, string password) { if (username.Equals(password, StringComparis 阅读全文
posted @ 2012-08-19 22:17 安度 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: C# 操作svg图1、http://sourceforge.net/projects/svgdomcsharp/2、http://www.codeproject.com/KB/cs/svgnet.aspx3、http://www.codeproject.com/script/Articles/ViewDownloads.aspx?aid=37514、http://svg.codeplex.com/releases/view/18884 阅读全文
posted @ 2012-08-07 20:38 安度 阅读(2989) 评论(0) 推荐(1) 编辑
摘要: C#.net word excel powerpoint (ppt) 转换成 pdf 文件2010年12月31日 星期五 上午 11:29using 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 Word = Microsoft.Office.Interop.Word;using Excel 阅读全文
posted @ 2012-07-01 01:35 安度 阅读(1830) 评论(0) 推荐(0) 编辑
摘要: 将Excel转换成PDF格式:using MsExcel = Microsoft.Office.Interop.Excel;object missing = System.Reflection.Missing.Value;//打开Excel文件MsExcel.Workbook wb = appc.Application.Workbooks.Open( fielPath, missing, false, missing, missing, missing, missing, missing, missing, true, missing, missing, missing, missing,.. 阅读全文
posted @ 2012-07-01 01:30 安度 阅读(1174) 评论(1) 推荐(0) 编辑
摘要: 一.前言: XSLT转换技术是XML中的一项重要技术,本文将向XML开发者介绍.Net框架下的一些不同的XSLT转换技术。同时,本文还将介绍如何运用各种不同的输入数据源以完成一个XSLT转换。在.Net框架下,System.Xml.Xsl.XslTransform类能根据一个XSLT样式表文件转换一个XML文档,它是XSLT转换中最重要的一个类,同时它能够支持W3C的XSLT 1.0的语法,其运用的命名空间是http://www.w3.org/1999/XSL/Transform。 二.与XSLT转换相关的输入数据源: .Net框架下有许多类可以完成读取XML文档以实现XSLT转换的功能... 阅读全文
posted @ 2012-02-14 15:00 安度 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 哈希加密:MD5:byte[]data=newbyte[DATA_SIZE];//ThisisoneimplementationoftheabstractclassMD5.MD5md5=newMD5CryptoServiceProvider();byte[]result=md5.ComputeHash(data);SHA1:byte[]data=newbyte[DATA_SIZE];byte[]result;SHA1sha=newSHA1CryptoServiceProvider();//ThisisoneimplementationoftheabstractclassSHA1.result= 阅读全文
posted @ 2011-12-15 17:03 安度 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 二:浮点数的存储格式2.1 IEEE floating point standard上面我们说了,浮点数的小数点是不固定的,如果每个人都按照自己的爱好存储在电脑里,那不就乱套了吗?那么怎么在计算机中存储这种类型的数字呢?象这类古老的问题前人早都为我们做好了相应的规范,无规矩不成方圆吗。我们平时所说的浮点数的存储规范,就是由IEEE指定的,具体的规范文件是:IEEE Standard 754 for Binary Floating-Point Arithmetic。大家可以很容易的从网络上下载到这篇文档。下面,偶就大致的描述一下,感兴趣的“同志”们可以阅读原文。----------------- 阅读全文
posted @ 2011-12-09 17:39 安度 阅读(715) 评论(0) 推荐(0) 编辑