ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
**生成随机字符串** ```autohotkey RandomStr(aLength = 16, aLowestAsc = 48, aHighestAsc = 122) ``` ### 参数 Parameters - aLength - 随机数长度 - aLowestAsc - Asc值下限 - aHighestAsc - Asc值上限 ### 返回 Returns 随机字符串 ### 抛出异常 Throws - 无 ### 示例 Example ```autohotkey MsgBox, % RandomStr() MsgBox, % RegExReplace(RandomStr(), "\W", "i") ; only alphanum. ```