File: strlower.csd

package info (click to toggle)
csound-manual 1%3A6.02~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,052 kB
  • ctags: 234
  • sloc: xml: 179,174; python: 1,198; makefile: 570
file content (36 lines) | stat: -rw-r--r-- 875 bytes parent folder | download | duplicates (13)
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
<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
-n    ;;;no sound output
;-iadc    ;;;uncomment -iadc if realtime audio input is needed too
</CsOptions>
<CsInstruments>
;example of Joachim Heintz

  opcode FilSuf, S, So
  ;returns the suffix of a filename or path, optional in lower case 
Spath,ilow xin
ipos   strrindex Spath, "."	;look for the rightmost '.'
Suf    strsub    Spath, ipos+1	;extract the substring after "."
 if ilow != 0 then		;if ilow input is not 0 then 
Suf    strlower  Suf 		;convert to lower case
 endif
       xout      Suf
  endop

instr suff

ilow = p4
       prints    "Printing suffix:\n"
Suf    FilSuf    "/my/dir/my/file.WAV", ilow
       puts      Suf, 1

endin
</CsInstruments>
<CsScore>
i "suff" 0 1 0	;do not convert to lower case
i "suff" 3 1 1	;convert to lower case
e
</CsScore>
</CsoundSynthesizer>