jis2sjis

JIS を SJIS に変換

val = jis2sjis(jis)

jis : [変数] 変換する文字列
val : [変数] 変換された文字列

(プラグイン / モジュール : encode.as)

解説

jis に指定した文字コード JIS の文字列を Shift_JIS に変換して結果を val に返します。

サンプル

#include "encode.as"
src = "HSPでWindowsの世界が広がります。"
dest = ""

mes src
mes ""

sjis2jis dest, src
mes "SJIS -> JIS"
mes dest
mes ""

mes "JIS -> SJIS"
mes jis2sjis(dest)

関連項目

eucjp2sjisEUC-JP を SJIS に変換(encode.as)
utf7n2sjisUTF-7 を SJIS に変換(encode.as)
utf8n2sjisUTF-7 を SJIS に変換(encode.as)
sjis2jisSJIS を JIS に変換(encode.as)

情報

プラグイン / モジュールencode.as
作成日2008/06/05
著作者sharkpp
URLhttps://wiki.hsp.moe/Module%EF%BC%8F%E6%96%87%E5%AD%97%E3%82%B3%E3%83%BC%E3%83%89%E5%A4%89%E6%8F%9B%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB.html
備考encode.as をインクルードしてください。
タイプユーザー拡張命令
グループShift_JIS に変換
対応環境
  • その他 : Windows 版 HSP
hs ファイルhsphelp\encode.hs