0
ファイルを読み込んで "the"という単語を見つけて、改行を挿入します。つまり、テキストを見つけて交換する‘the’
から‘/nthe’
お手伝いできますか?文字列をSASのラインフィードに置き換えてください
/*input.txt*/
Many a slip between the cup and the lip.
/*Required output*/
Many a slip between
the cup and
the lip.
/*sas datastep*/
data inp;
infile "c:/tmp/input.txt";
/*ADD LOGIC*/
infile "c:/tmp/output.txt";
run;
いくつかのオプションは、一つはhttp://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewerになり。 htm#a000215027.htm – kl78
Transwdは、改行を作成する代わりに、 '/ n'としてテキストを作成しています。 test_txt = tranwrd(テキスト、 "the"、 "/ nthe"); – AKS
linefeedはsasで '0A'xと解釈されるため、test_txt = tranwrd(text、 "the"、cat(' 0A'x、the ")); (もしあなたもそれを追加したいなら、crは '0d'xです) – kl78