指定した文字列をSAS名前リテラルに変換します。
カテゴリ: | 文字 |
制限事項: | この関数は、I18Nレベル2に準拠しており、SBCS、DBCSおよびMBCS(UTF8)での使用目的で設計されています。 |
data test; input string $32.; length result $ 67; result=nliteral(string); datalines; abc_123 This and That cats & dogs Company's profits (%) "Double Quotes" 'Single Quotes' ; proc print; title 'Strings Converted to N-Literals or Returned Unchanged'; run;