File: match-split-string-list.sgm

package info (click to toggle)
docbook-dsssl-doc 1.75-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,672 kB
  • ctags: 8
  • sloc: makefile: 37
file content (66 lines) | stat: -rw-r--r-- 1,645 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<RefEntry id="match-split-string-list">
<!-- This file is generated automatically from the DSSSL source. -->
<!-- Do not edit this file! -->
<?html-filename match-split-string-list.html>

<RefMeta>
  <RefEntryTitle>match-split-string-list</RefEntryTitle>
  <RefMiscInfo Role="file">dblib.dsl</RefMiscInfo>
</RefMeta>

<RefNameDiv>
  <RefName>match-split-string-list</RefName>
  <RefPurpose>Splits each string in a list of strings and returns the concatenated result list</RefPurpose>
</RefNameDiv>

<RefSynopsisDiv><Title>Synopsis</Title>
<Synopsis>
(match-split-string-list string-list target)
</Synopsis>
</RefSynopsisDiv>

<RefSect1><Title>Description</Title>

<para>
Splits each string in <literal>string-list</literal> at <literal>target</literal> with <literal>(match-split)</literal>,
concatenates the results, and returns a single list of tokens.
</para>
<variablelist>
<varlistentry><term>string-list</term>
<listitem>
<para>
The list of strings to split.
</para>
</listitem>
</varlistentry>
<varlistentry><term>target</term>
<listitem>
<para>
The string which is a delimiter between tokens.
</para>
</listitem>
</varlistentry>
</variablelist>

</RefSect1>

<RefSect1><Title>Author</Title>

<para>
Norman Walsh, &lt;ndw@nwalsh.com&gt;
</para>
</RefSect1>
<RefSect1><Title>Source Code</Title>

<ProgramListing>
(define (match-split-string-list string-list target)
  ;; Splits each string in a list of strings and returns the concatenated result list
  (let loop ((result '()) (sl string-list))
    (if (null? sl)
	result
	(loop (append result (match-split (car sl) target))
	      (cdr sl)))))
</ProgramListing>
</RefSect1>

</RefEntry>