encoder クラス : JavaScriptStringEncode(string,bool) メソッド
説明
文字列をエンコードします。
構文
encoderInstance.JavaScriptStringEncode(string targetString, bool addDoubleQuotes)
引数
クラス | 名前 | 説明 |
string | targetString | エンコードする文字列。td> |
bool | addDoubleQuotes | エンコードされた文字列の前後に二重引用符を含めるかどうかを示す値。 |
返り値
クラス | 説明 |
string | エンコードされた文字列。 |
サンプルコード
1: | encoder e = new encoder(); |
2: | string str = "This is '."; |
3: | string encoded = e.JavaScriptStringEncode(str, true); // "This is \u0027." |
注意
これは、System.Web.HttpUtility.JavaScriptStringEncode(String,Bool) メソッドのラッパーです。