File: isinstring.sci

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (78 lines) | stat: -rw-r--r-- 2,170 bytes parent folder | download | duplicates (2)
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
67
68
69
70
71
72
73
74
75
76
77
78
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ???? - INRIA - Scilab
// Copyright (C) 2002-2004 - INRIA - Vincent COUVERT
// 
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution.  The terms
// are also available at    
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt

function r=isinstring(str,pos)
// Finds if the character pointed by pos is in a string (return %T) or not (return %F)

str=part(str,1:pos-1)
quote="''"

// If no quote in before pos
if strindex(str,quote)==[] then
  r=%F
  return
end


ksym=0
strcnt=0
qcount=0 // Quote counter
bcount=0 // Bracket counter
pcount=0 // Paranthesis counter
sym=' '

while %T ,
  while %T then // Looking for next non white character
    if ksym>=pos then
      r=strcnt<>0;
      return
    end
    ksym=ksym+1;
    psym=sym; // psym = previous symbol
    sym=part(str,ksym);
    if sym<>' ' then break,end
  end
  
  if strcnt<>0 then // If in a string
    if sym==quote then
      qcount=1
      while part(str,ksym+1)<>quote&ksym+1<pos then // Searching for quote or end of string
	ksym=ksym+1
      end
      
      // 5 following lines added 25/02/2003 (it seemed to work before...)
//      if ksym+1<pos then // Added by VC 17/03/2003 because didn't work for following string 'a'.^[1+1i] (pb in i_notation())
//	qcount=qcount+1
//      end // Added by VC 17/03/2003
      while part(str,ksym+1)==quote&ksym+1<pos then // Searching for a sequence of quotes
	ksym=ksym+1
	qcount=qcount+1
      end
      // End of part added 25/02/2003

      if 2*int(qcount/2)<>qcount then 
	strcnt=0
	sym=part(str,ksym)
      end
    end
  elseif sym==quote then
    // Check if transpose or beginning of a string 
    if abs(str2code(psym))>=36&psym<>')'&psym<>']'&psym<>'.'&psym<>quote then // Not a transpose
      strcnt=1
    elseif bcount<>0 then // Inside a matrix definition
      if part(str,ksym-1)==' ' then strcnt=1,end
    end
  elseif sym=='[' then
    bcount=bcount+1
  elseif sym==']' then
    bcount=bcount-1
  end
end
endfunction