·设为首页收藏本站📧邮箱修改🎁免费下载专区💎积分✅卡密📒收藏夹👽聊天室
返回列表 发布新帖

分享个火车头的脚本 随机打乱句子顺序

94 0

马上注册,免费下载更多dz插件网资源。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
现在百度收录真的很难,不想被割就不要轻易尝试那些收录大法。传说,越是看不懂的越容易收录。闲来无事,发个火车头的C#脚本,随机打乱语句顺序,造呗,反正也不收录。

  1. 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;        }    }}
复制代码
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

创宇盾启航版免费网站防御网站加速服务
投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:18.191.237.31,GMT+8, 2024-11-5 18:28 , Processed in 0.242633 second(s), 78 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2024 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表