🎲 随机文本生成器

生成随机文本,自定义词数和段落数。

相关工具

📋 使用说明

1
输入参数

根据提示填写所需参数

2
点击按钮

点击"生成/执行"开始处理

3
获取结果

查看并复制处理结果

关于此工具

生成随机文本,自定义词数和段落数。

使用方法

  • Enter or paste your data in the input fields above
  • Results update instantly - all processing in your browser
  • 100% free with no signup or account required

工具网络

SkillgohubSmarttoolgoBesttoolfunQuickskillhub
var WORDS = "the a is in it of and to with for on by at this that from are was been have has had will can all each some any but not or if so as such only other new first last long great small high low big right left good bad near far more very just also well even still much many same own old free open close turn set put make take give get find work play show keep help move live need want know think come look use add change form plan start end part hand line word data code site app web tool user text menu book page file link list name time day week month year world people place point case group number system level state way thing door room".split(" "); function initTool() { document.getElementById('tool-app').innerHTML = '
'; } function doIt() { var totalW = parseInt(document.getElementById('wc').value) || 100; var paras = parseInt(document.getElementById('pc').value) || 3; var html = ''; for (var p=0;p'; } document.getElementById('out').innerHTML = html; } window.addEventListener('DOMContentLoaded', initTool);