문자열을 utf-8 형식으로 변환하는 jscript 함수를 -> vbsvri

Rainmaker의 이미지

function toUTF8(szInput)
	{
	var wch,x,uch="",szRet="";

	for (x=0; x<szInput.length; x++)
	{
	wch=szInput.charCodeAt(x);
	if (!(wch & 0xFF80))
	{
	szRet += "%" + wch.toString(16);
	}
	else if (!(wch & 0xF800))
	{
	uch = "%" + (wch>>6 | 0xC0).toString(16) + 
		"%" + (wch & 0x3F | 0x80).toString(16);
	szRet += uch;
	}
	else
	{
	uch = "%" + (wch >> 12 | 0xE0).toString(16) + 
		"%" + (((wch >> 6) & 0x3F) | 0x80).toString(16) +
		"%" + (wch & 0x3F | 0x80).toString(16);
	szRet += uch; 
	}
	}
	return(szRet);
	}

문자열을 utf-8 형식으로 변환하는 Jscript 함수인데요.

이걸 VBScript 로 변환해달라는데 지금 회사에 남아있는 사람중에
VBScript 를 다룰 줄 아는 사람이 없네요.

지금 해보고는 있는데 혹시 도와주실분 안계신지요 ^^;;

문제가되는 부분은 (wch>>6 | 0xC0), (wch & 0x3F | 0x80) 같은부분을

VBScript 에선 어떻게 쓰는지 몰라서 진행이 더딥니다.

내일이 리뷰하는 날인데 이거때문에 퇴근을 못하고 있답니다 -_-; 으윽..

조언 부탁드립니다.

liongo의 이미지

>>, << 연산은 지원하지 않는것같습니다..

저도 VBScript는 사용하지 않는관계로 참조할만한 사이트만 올려봅니다..

시프트연산에대해서는 N/A로 나와잇구요..

나머지는 대체할수있겠네요..

http://tech.irt.org/articles/js117/

' 형식이 내용을 규정한다. '

liongo의 이미지

흐음 죄송합니다.. 역시나 좀더 찾아보구 올릴껄.. ㅡㅡa

지원하는군요 조금 다른 방식으로..

http://www.nedcomp.nl/support/origdocs/dotnetsdk/vblr7net/vaoprleftshiftassign.htm

참조하시길 바랍니다..

역시 구굴선생님이십니다..

p.s 잘 해결하시고 즐퇴근 하시길 :)

' 형식이 내용을 규정한다. '

Rainmaker의 이미지

감사합니다 ^^

해봐야겠네요~ ^^

다시한번 감사드립니다.

세상은 날 삼류라 하고 이 여자는 날 사랑이라 한다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.