jsexecutor クラス : IsString(string)メソッド
説明
引数がダブルクォートで囲まれているかどうかを示す値を返します。
構文
instance.IsString(string ret)
引数
クラス | 名前 | 説明 |
string | ret | JavaScriptからの返り値。 |
返り値
クラス | 説明 |
bool | ダブルクォートで囲まれているかどうかを示す値。 |
サンプルコード
1: | string jscode = "return 'some string';"; // Returns a string in the JavaScript. |
2: | jsexecutor jse; |
3: | string result = jse.Execute(jscode); // Returns "some string". Double quotes are also included in the return value. |
4: | bool iss = jse.IsString(result); // true |
注意
JavaScriptからの戻り値は文字列として返されます。 元の戻り値が文字列の場合、二重引用符で囲まれます。
元の返り値が文字列かどうかを判定します。
参照リンク
無し。