马上注册,免费下载更多dz插件网资源。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
现在百度收录真的很难,不想被割就不要轻易尝试那些收录大法。传说,越是看不懂的越容易收录。闲来无事,发个火车头的C#脚本,随机打乱语句顺序,造呗,反正也不收录。
- using System;using System.Collections.Generic;using System.Text.RegularExpresions;using SpiderInterface;class LocoyCode{ private static Random random = new Random(); // 运行方法,接受HTML内容和响应对象,返回处理后的结果 public string Run(string content, ResponseEntry response) { string result = ShuffleSentencesWithinTags(content); return result; } // 在标签内部打乱句子的方法 private string ShuffleSentencesWithinTags(string content) { string pattern = @"<p>(.*)<\/p>"; // 匹配<p>标签内的内容 MatchCollection matches = Regex.Matches(content, pattern); foreach (Match match in matches) { string sentence = match.Groups[1].Value; // 获取匹配到的句子内容 string shuffledSentence = ShuffleSentences(sentence); // 打乱句子 // 替换原文本中的句子为打乱后的句子 content = content.Remove(match.Index, match.Length) .Insert(match.Index, "" + shuffledSentence + ""); } return content; } // 打乱句子的方法 private string ShuffleSentences(string text) { string[] sentences = Regex.Split(text, @"(?<=[。,!?、:;])"); // 使用标点符号分割句子 if (sentences.Length > 0) { List<string> shuffledSentences = new List<string>(sentences); shuffledSentences.Shuffle(random); // 打乱句子顺序 string modifiedSentence = string.Join("", shuffledSentences); // 重新组合句子 return modifiedSentence; } return text; }}// 扩展方法用于列表随机打乱public static class ListExtensions{ public static void Shuffle<T>(this IList<T> list, Random rng) { int n = list.Count; while (n > 1) { n--; int k = rng.Next(n + 1); T value = list[k]; list[k] = list[n]; list[n] = value; } }}
复制代码
©DZ插件网所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。 网站部分内容来源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,得到更好的正版服务。 您在本站任何的赞助购买、下载、查阅、回复等行为等均表示接受并同意签订《DZ插件网免责声明协议》。 如有侵权请邮件与我们联系处理: discuzaddons@vip.qq.com 并出示相关证明以便删除。敬请谅解!
|
|