2017年7月9日 星期日

遞迴取代文字

// 取代字串中所有值
public replaceAll(str, find, replace) {
return str.replace(new RegExp(find, 'g'), replace);
}

沒有留言:

張貼留言

remove last word from SQL query

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