随笔都是学习笔记
随笔仅供参考,为避免笔记中可能出现的错误误导他人,请勿转载。
摘要: 代码实现: # 正向匹配 def getRes1(s1, dic, maxLen, s2): while len(s1) > 0: w = s1[:maxLen] while w not in dic and len(w) > 1: w = w[:-1] s2 = s2 + [w] s1 = s1[ 阅读全文
posted @ 2022-04-27 14:50 时间完全不够用啊 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 简介: apache的东西,依赖EL 使用jstl需要导入jstl1.2.jar四大库: > core:核心库,重点 > fme:格式化:目期、数字 > sql:过时 > xml:过时 core库: core -->c标签!1. out和set * <c:out>:输出 > value:可以是字符串 阅读全文
posted @ 2022-04-27 11:47 时间完全不够用啊 阅读(144) 评论(0) 推荐(0) 编辑