2017年7月9日 星期日

Base64 UTF8 Encoding

// 字串 轉成 Base64
public getBase64_Encode(inpuString: string) {
return btoa(encodeURIComponent(inpuString).replace(/%([0-9A-F]{2})/g,
function toSolidBytes(match, p1) {
return String.fromCharCode(parseInt('0x' + p1, 16));
}
));
}

沒有留言:

張貼留言

remove last word from SQL query

SET @columnSql = SUBSTRING ( @columnSql , 1 , LEN ( @columnSql ) - 1 )