手动拉伸过的图片会附带上高和宽,代码中有通过 style 去除掉高度信息,但末尾的宽度信息并未被去除
另外获取剪贴版文本可以直接去封装,不需要自己用正则提取一遍
可以通过(?<=src=".*")(\s*width=\d+)|(\s*height=\d+)|(\s*width=\d+)|(\s*height=\d+)|||正则替换去除末尾的宽度
(?<=src=".*")(\s*width=\d+)|(\s*height=\d+)|(\s*width=\d+)|(\s*height=\d+)|||
作者大大,能不能设置成可以修改固定的比例,这样不用每次都要填入比例了,因为都要填写比例好麻烦的,感谢大大
可以通过
(?<=src=".*")(\s*width=\d+)|(\s*height=\d+)|(\s*width=\d+)|(\s*height=\d+)|||
正则替换去除末尾的宽度