java 에서 String 과 byte[] 간 변환방법
String test = "this is example";
byte[] strbytes = test.getBytes(); // byte[] 로 변환
String s = new String(strbytes); // byte[] => String 으로 변환
2018-09-16
2012-11-23
javascript] array를 이용한 중복제거
//TIPS
//[JS] Array 중복제거하기(2009/06/01)
//written by Kim Yeonview : 36
//
Array.prototype.removeSame = function() {
var oldArray = this;
var b = [];
var j = 0;
oldArray.sort();
while(oldArray.length > 0) {
var newKey = oldArray.shift();
if(j == 0) {
b.push(newKey);
j++;
} else if(b[j-1] != newKey) {
b.push(newKey);
j++;
}
}
return b;
};
라벨:
중복제거,
array,
javascript
피드 구독하기:
글 (Atom)