8-20位字母、数字和特殊符号4选3

<FormItem {...formItemLayout} label="密码:">
            {getFieldDecorator("userPassword", {
              rules: [
                {
                  required: true,
                  message: "请输入密码!",
                },
                {
                  pattern: /(^.*(?=.{8,20})(?=.*\d)(?=.*[a-zA-Z])(?=.*[~!@#$%^&*()_+[\]{}|\;:'",./<>?-]).*$)|(^.*(?=.{8,20})(?=.*\d)(?=.*[a-z])(?=.*\d)(?=.*[A-Z]).*$)|(^.*(?=.{8,20})(?=.*\d)(?=.*[a-z])(?=.*[~!@#$%^&*()_+[\]{}|\;:'",./<>?-]).*$)|(^.*(?=.{8,20})(?=.*\d)(?=.*[A-Z])(?=.*[~!@#$%^&*()_+[\]{}|\;:'",./<>?-]).*$)|(^.*(?=.{8,20})(?=.*[A-Z])(?=.*[a-z])(?=.*[~!@#$%^&*()_+[\]{}|\;:'",./<>?-]).*$)/,
                  message: `8-20个字符,由字母、数字和符号组合`
                },
              ],
            })(<Input placeholder="密码" type="password" autoComplete="new-password" {...inputStyle1}/>)}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,我会逐个回答你的问题。 首先,我来回答你的第一个问题。以下是生成随机字符串并写入文件的 Python 代码: ```python import random # 打开文件 file = open('test.txt', 'w') # 定义可字符 chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\n\r*&^$' # 写入随机字符串 count = 0 while count < 1000: char = chr(random.randint(1, 122)) if char in chars: file.write(char) count += 1 # 关闭文件 file.close() ``` 这段代码会生成长度为 1000 的随机字符串,并写入到文件 `test.txt` 中。文件中包含大写字母、小写字母数字和一些特殊符号。 注意,我们使用了 `chr()` 函数将 ASCII 码转换为字符。 接下来,我回答你的第二个问题。以下是两种不同的方法统计 `test.txt` 文件中大写字母、小写字母数字的频率及百分比: 方法一: ```python # 打开文件 file = open('test.txt', 'r') # 统计字符数和各类字符数 total_count = 0 upper_count = 0 lower_count = 0 digit_count = 0 for line in file: for char in line: # 统计字符数 total_count += 1 # 判断字符类别并统计 if char.isupper(): upper_count += 1 elif char.islower(): lower_count += 1 elif char.isdigit(): digit_count += 1 # 计算百分比 upper_percent = upper_count / total_count * 100 lower_percent = lower_count / total_count * 100 digit_percent = digit_count / total_count * 100 # 输出结果 print(f"大写字母:{upper_count},占比:{upper_percent:.2f}%") print(f"小写字母:{lower_count},占比:{lower_percent:.2f}%") print(f"数字:{digit_count},占比:{digit_percent:.2f}%") # 关闭文件 file.close() ``` 方法二: ```python # 打开文件 file = open('test.txt', 'r') # 统计字符数和各类字符数 total_count = 0 upper_count = 0 lower_count = 0 digit_count = 0 for line in file: for char in line: # 统计字符数 total_count += 1 # 判断字符类别并统计 if 'A' <= char <= 'Z': upper_count += 1 elif 'a' <= char <= 'z': lower_count += 1 elif '0' <= char <= '9': digit_count += 1 # 计算百分比 upper_percent = upper_count / total_count * 100 lower_percent = lower_count / total_count * 100 digit_percent = digit_count / total_count * 100 # 输出结果 print(f"大写字母:{upper_count},占比:{upper_percent:.2f}%") print(f"小写字母:{lower_count},占比:{lower_percent:.2f}%") print(f"数字:{digit_count},占比:{digit_percent:.2f}%") # 关闭文件 file.close() ``` 这两种方法的思路都是一样的,只是判断字符类别的方式不同。 最后,我回答你的第三个问题。以下是将 `test.txt` 文件中所有小写字母转换为大写字母并保存到 `test_copy.txt` 文件中的 Python 代码: ```python # 打开文件 file = open('test.txt', 'r') copy_file = open('test_copy.txt', 'w') # 将小写字母转换为大写字母并写入文件 for line in file: for char in line: if 'a' <= char <= 'z': char = chr(ord(char) - 32) # 将小写字母转换为大写字母 copy_file.write(char) # 关闭文件 file.close() copy_file.close() ``` 这段代码会逐行读取 `test.txt` 文件,将其中所有小写字母转换为大写字母,并写入到 `test_copy.txt` 文件中。 注意,我们使用了 `ord()` 函数将字符转换为 ASCII 码,并使用 `chr()` 函数将 ASCII 码转换为字符。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值