//最小矩形(非透明最小区域) public static function getMinRect(target:BitmapData):Rectangle{ return target.getColorBoundsRect(0xffffffff,0x00000000,false); } //去除多余透明区域 public static function removeTransparentRect(target:BitmapData,minRect:Rectangle):BitmapDa…
大约2年前,写过一篇<字符串中去除多余的空格保留一个(C#)>https://www.cnblogs.com/insus/p/7954151.html 今天,Insus.NET使用MS SQL Server来实现相同的功能.现Insus.NET已经把它写成一个自定义函数. SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Ins…