Stella981 Stella981
3年前
Python 字符串与基本语句
Python特点python中没有变量的声明语句结束后没有分号严格要求缩进支持很长很长的大数运算(直接在Idle中输入即可)用“”来注释BIF:Bulitinfunctions(内置函数)input
Stella981 Stella981
3年前
File类、递归、字节流、字符流
File类、递归、字节流、字符流(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fblog.csdn.net%2Fweixin_41290516%2Farticle%2Fdetails%2F109596031%23%25E4%25BB%258A%25E6%2597%25A5%25E5
Wesley13 Wesley13
3年前
.net 2.0 4.0 表单中危险字符
asp.net中“从客户端中检测到有潜在危险的Request.Form值”错误的解决办法在提交表单时候,asp.net提示:"从客户端(......)中检测到有潜在危险的Request.Form值"。asp.net中的请求验证特性提供了某一等级的保护措施防止XSS攻击,asp.net的请求验证是默认启动的。这里给出不同版本.net的解决方法。
Wesley13 Wesley13
3年前
mysql字符串如何得到指定字符最后的位置,学习SUBSTRING_INDEX的用法
转载原文 http://www.myexception.cn/javaweb/43.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.myexception.cn%2Fjavaweb%2F43.html)表里的数据如11.11.1.11.2.1
Stella981 Stella981
3年前
Spring 日志输出错误字符
Spring的日志在输出的时候,出现了类似e\0;39me\2m\的错误。!Springlogerror(https://cdn.ossez.com/discourseuploads/original/1X/e5d28e955ce53e29985a0f7b9664431ac12d7888.png)(https://www.o
Stella981 Stella981
3年前
Json字符串转map集合
第一步:在pom.xml中添加依赖;<dependency<groupIdcom.alibaba</groupId<artifactIdfastjson</artifactId<version1.2.47</version
Stella981 Stella981
3年前
C#字符串转Json
IDictionary<string,objectmapnewDictionary<string,object();map\"taxpayerNum"\"110101201702071";map\"enterpriseName"\"测试新1";map\"tradeNo"\prefix"2
Easter79 Easter79
3年前
Sublime Text 3 反转字符串
工具插件开发新建插件importsublime,sublime_pluginclassReverseCharactersCommand(sublime_plugin.TextCommand):defrun(self,edit):forregioninsel
Wesley13 Wesley13
3年前
JAVA字符串格式化
原文地址:https://blog.csdn.net/lonely\_fireworks/article/details/7962171常规类型的格式化String类的format()方法用于创建格式化的字符串以及连接多个字符串对象。熟悉C语言的同学应该记得C语言的sprintf()方法,两者有类似之处。format()方法有两种重载形式。