Bioplib
Protein Structure C Library
 All Data Structures Files Functions Variables Typedefs Macros Pages
QueryStrStr.c
Go to the documentation of this file.
1 /************************************************************************/
2 /**
3 
4  \file QueryStrStr.c
5 
6  \version V1.21
7  \date 07.07.14
8  \brief
9 
10  \copyright (c) UCL / Dr. Andrew C. R. Martin 1991-2014
11  \author Dr. Andrew C. R. Martin
12  \par
13  Institute of Structural & Molecular Biology,
14  University College London,
15  Gower Street,
16  London.
17  WC1E 6BT.
18  \par
19  andrew@bioinf.org.uk
20  andrew.martin@ucl.ac.uk
21 
22 **************************************************************************
23 
24  This code is NOT IN THE PUBLIC DOMAIN, but it may be copied
25  according to the conditions laid out in the accompanying file
26  COPYING.DOC.
27 
28  The code may be modified as required, but any modifications must be
29  documented so that the person responsible can be identified.
30 
31  The code may not be sold commercially or included as part of a
32  commercial product except as described in the file COPYING.DOC.
33 
34 **************************************************************************
35 
36  Description:
37  ============
38 
39 
40 **************************************************************************
41 
42  Usage:
43  ======
44 
45 **************************************************************************
46 
47  Revision History:
48  =================
49 - V1.1 08.02.91 Added KillLine()
50 - V1.2 10.02.91 Added setextn() and index()
51 - V1.3 20.03.91 Added Word()
52 - V1.4 28.05.92 ANSIed
53 - V1.5 22.06.92 Added tab check to Word(). Improved setextn().
54  Added WordN(). Documented other routines.
55 - V1.6 27.07.93 Corrected fsscanf() for double precision
56 - V1.7 07.10.93 Checks made on case before toupper()/tolower()
57  for SysV compatibility. Also index() becomes
58  chindex()
59 - V1.8 18.03.94 getc() -> fgetc()
60 - V1.9 11.05.94 Added GetFilestem(), upstrcmp(), upstrncmp() &
61  GetWord()
62 - V1.10 24.08.94 Added OpenStdFiles()
63 - V1.11 08.03.95 Corrected OpenFile() for non-UNIX
64 - V1.12 09.03.95 Added check on non-NULL filename in OpenFile()
65 - V1.13 17.07.95 Added countchar()
66 - V1.14 18.10.95 Moved YorN() to WindIO.c
67 - V1.15 06.11.95 Added StoreString(), InStringList() and FreeStringList()
68 - V1.16 22.11.95 Moved ftostr() to generam.c
69 - V1.17 15.12.95 Added QueryStrStr()
70 - V1.18 18.12.95 OpenStdFiles() treats filename of - as stdin/stdout
71 - V1.19 05.02.96 OpenStdFiles() allows NULL pointers instead if filenames
72 - V1.20 18.09.96 Added padchar()
73 - V1.21 07.07.14 Use bl prefix for functions By: CTP
74 
75 *************************************************************************/
76 /* Doxygen
77  -------
78  #GROUP General Programming
79  #SUBGROUP String handling
80  #FUNCTION blQueryStrStr()
81  This is like strstr() but allows a ? character in the substring
82  which matches any character.
83 */
84 /************************************************************************/
85 /* Includes
86 */
87 #include <string.h>
88 
89 /************************************************************************/
90 /* Defines and macros
91 */
92 
93 /************************************************************************/
94 /* Globals
95 */
96 
97 /************************************************************************/
98 /* Prototypes
99 */
100 
101 
102 /************************************************************************/
103 /*>char *blQueryStrStr(char *string, char *substring)
104  --------------------------------------------------
105 *//**
106 
107  This is like strstr() but allows a ? character in the substring
108  which matches any character.
109 
110 - 15.12.95 Original By: ACRM
111 - 07.07.14 Use bl prefix for functions By: CTP
112 */
113 char *blQueryStrStr(char *string, char *substring)
114 {
115  int i, j,
116  lenstr,
117  lensubstr;
118  char *retval = NULL;
119 
120  /* Get lengths of the 2 strings */
121  lenstr = strlen(string);
122  lensubstr = strlen(substring);
123 
124  /* Walk through the main string */
125  for(i=0; i<=lenstr-lensubstr; i++)
126  {
127  /* Set return value to point to current position in main string */
128  retval = string + i;
129 
130  /* Walk through substring */
131  for(j=0; j<lensubstr; j++)
132  {
133  /* If there is a mismatch, set return to NULL and break out of
134  the substring counting
135  */
136  if((substring[j] != '?') &&
137  (substring[j] != '%') &&
138  (string[i+j] != substring[j]))
139  {
140  retval = NULL;
141  break;
142  }
143  }
144 
145  /* If retval hasn't been set to NULL, then we've got a match, so
146  return pointer
147  */
148  if(retval)
149  return(retval);
150  }
151 
152  /* This should always be NULL... */
153  return(retval);
154 }
155 
#define NULL
Definition: array2.c:99
char * blQueryStrStr(char *string, char *substring)
Definition: QueryStrStr.c:113