在Linux上用强大的shell脚本应该也可以完成,可是使用Windows的朋友呢?其实象这样一个简单任务用Python这个强大脚本语言只要几条语句就可以搞定了.个大家知道,要完成这样一个任务根本不用动用C/C++或Java这样的大家伙.好来看看Python的身手,用自己喜欢的文本编辑器或者直接使用安装包自带的IDE都可以:# --- picknames.py ---import osfilenames=os.listdir(os.getcwd())for name in filenames:f…
原文:Winform: use the WebBrowser to display XML with xslt, xml, xslt 转 html 字符串 声明xml字符串: string xml = "...."; 声明xslt 转换类: XslCompiledTransform xslt = new XslCompiledTransform(); 调用xslt sheet文件: xslt.Load("XSLTFile1.xslt"); 将字符串转成流类型 Tex…
来自博客园 http://www.cnblogs.com/yugen/archive/2010/08/18/1802781.html 1.用字符串分隔: using System.Text.RegularExpressions;string str="aaajsbbbjsccc";string[] sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);foreach (string i in sArray) R…
C有三个标准库函数的输出字符串puts().fputs()和printf(). 1.puts()函数仅仅须要给出字符串參数的地址. #include <stdio.h> int puts(const char *s); 演示样例: #include <stdio.h> #define DEF "I am libing" int main(int argc, char **argv) { char str1[30] = "I am libing.&quo…
比如原始的List变量的值是这种: [{"]}] 而想要将其输出为带缩进的,树状的,很漂亮的效果,那么可以通过这样的方法: import json #demoDictList is the value we want format to output jsonDumpsIndentStr = json.dumps(demoDictList, indent=1) print "jsonDumpsIndentStr=",jsonDumpsIndentStr 输出: [ { &qu…