这篇随笔根据两个面试题来实战一下数组.字符串的一些方法. 题一:一个字符串中找出出现次数最多的字符次数 var str = 'fuuhuhuhufaihuhfnkjNKCNIO'; function num(str) { var json = {}; for (var i = 0; i < str.length; i++){ //字符串的charAt()方法返回指定位置的字符串 if(!json[str.charAt(i)]){//若json对象中没有当前属性,则给当前属性赋值为1 json[…
直接上代码,关键点: 133行的敏感词过滤 176行的6位扩展码写入 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CVTE.Utils; using ImApiDotNet; using CVTE.ServiceModel; using System.C…