Switch to Bing in English
Copilot
あなたの日常的な AI アシスタント
約 645,000 件の結果
    賛成票24上位の回答edited May 25, 2011 at 1:51

    What you need is HTML Decode, though unfortunately ASP doesn't include one.

    This function, found on ASP Nut, and modified heavily by me, should do what you need. I tested it as vbscript running on my local computer and it seemed to work well, even wi...

    Function HTMLDecode(sText)
    Dim regEx
    Dim matches
    Dim match
    sText = Replace(sText, """, Chr(34))
    sText = Replace(sText, "<" , Chr(60))
    sText = Replace(sText, ">" , Chr(62))
    sText = Replace(sText, "&" , Chr(38))
    sText = Replace(sText, " ", Chr(32))


    Set regEx= New RegExp
    Content Under CC-BY-SA license
    これは役に立ちましたか?
  1. Classic ASP (VBScript) convert HTML codes to plain text

  2. 【VBScript】HelloWorldを表示させる #HTML - Qiita

  3. 分類別VBScript関数一覧|VBScript関数リファレンス

  4. VBScriptでWEBスクレイピング!hタグを取得してHTMLとして ...

  5. VBScript で WordファイルをまとめてHTMLに変換する - Qiita

  6. VBScript HTML Encode - CodeProject

  7. How can I use the HtmlEncode (or HtmlDecode) function in ...

  8. VBScriptでWEBスクレイピング!HTMLドキュメントとタイトルを ...

  9. HTML内にvbscriptを埋め込む - teratail【テラテイル】

  10. 以下にhtmlvbscriptを実行させるプログラムが書いてあるので …

このサイトを利用すると、分析、カスタマイズされたコンテンツ、広告に Cookie を使用することに同意したことになります。サード パーティの Cookie に関する詳細情報|Microsoft のプライバシー ポリシー