利用正则判断是否以Welcome开头
let str = "Welcome to the web site building tutorial!"; let regex = /^Welcome/; if (regex.test(str)) { console.log("判断当前字符串是以web开头!"); } else { console.log("判断当前字符串不以web开头!"); } //输出结果:判断当前字符串是以web开头!
利用正则输出字符串部分内容
let str = "Welcome to the web site building tutorial!"; let regex = /^Welcome(.*)/; let result = regex.exec(str); if (result != null) { console.log('输出:', result[0]); // 输出: Welcome to the web site building tutorial! console.log('输出:', result[1]); // 输出: to the web site building tutorial! }
上面是“javascript正则表达式实现字符串匹配输出”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4502.html
workflows工作流
- 森林里坐着一个外星人ComfyUI工作流
- 一幅以霓虹灯照亮的城市天际线和未来主义画
- 一碗热气腾腾的拉面ComfyUI工作流
- 葡萄庄园白葡萄酒ComfyUI工作流
- 金属埃及人ComfyUI工作流
- 一座生动的点彩主义灯塔ComfyUI工作流
- 水中一台精致而破旧的老式电视鱼缸ComfyUI工作流
- 一座古老的石阶,旁边有一棵树
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!