Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルに値'ABC'があり、それをASCII値に変換したいと思います。
これはどのように行うことができますか?
私の出力は次のようになります:656667
ASC()関数を使用します。ただし、一度に1文字で実行できると思います。したがって、文字列をループする必要があります。
lcString = "ABC" lcOutput = "" FOR I = 1 TO LEN(lcString) lcOutput = lcOutput + ASC( SUBSTR(lcString, I, 1) ) &&Out puts the ascii value. ENDFOR