5

如何在 Postscript 中连接两个字符串?

(foo) (bar) ??? -> (foobar)
4

3 回答 3

9

PostScript 没有内置的字符串连接运算符。您需要为此编写一些代码。例如

 /concatstrings % (a) (b) -> (ab)  
   { exch dup length    
     2 index length add string    
     dup dup 4 2 roll copy length
     4 -1 roll putinterval
   } bind def  

(代码来自https://en.wikibooks.org/wiki/PostScript_FAQ/Programming_PostScript#How_to_concatenate_strings%3F。

于 2012-09-12T00:02:57.703 回答
6

相同的想法推广到任意数量的字符串。较早的版本使用一个辅助函数acat,它接受一个字符串数组(便于计数和迭代)。这个版本使用更高级的循环和堆栈操作来避免分配数组。此版本还将通过将string运算符更改为array.

% (s1) (s2) (s3) ... (sN) n  ncat  (s1s2s3...sN)
/ncat {        % s1 s2 s3 .. sN n                   % first sum the lengths
    dup 1 add  % s1 s2 s3 .. sN n n+1 
    copy       % s1 s2 s3 .. sN n  s1 s2 s3 .. sN n
    0 exch     % s1 s2 s3 .. sN n  s1 s2 s3 .. sN 0 n 
    {   
        exch length add 
    } repeat             % s1 s2 s3 .. sN  n   len  % then allocate string
    string exch          % s1 s2 s3 .. sN str   n   
    0 exch               % s1 s2 s3 .. sN str  off  n
    -1 1 {               % s1 s2 s3 .. sN str  off  n  % copy each string
        2 add -1 roll       % s2 s3 .. sN str  off s1  % bottom to top
        3 copy putinterval  % s2 s3 .. sN str' off s1
        length add          % s2 s3 .. sN str' off+len(s1)
                            % s2 s3 .. sN str' off'
    } for                               % str' off'
    pop  % str'
} def 

(abc) (def) (ghi) (jkl) 4 ncat == %(abcdefghijkl)
于 2012-09-18T08:05:01.467 回答
3

有一些有用的子程序

http://www.jdawiseman.com/papers/placemat/placemat.ps

包括Concatenate(接受两个字符串)和ConcatenateToMark(标记 string0 string1 ...)。

于 2013-04-01T09:22:15.047 回答