Changeset 7380 for trunk/psLib/src/sys/psString.h
- Timestamp:
- Jun 6, 2006, 5:22:07 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r7300 r7380 14 14 * @author David Robbins, MHPCC 15 15 * 16 * @version $Revision: 1.2 1$ $Name: not supported by cvs2svn $17 * @date $Date: 2006-06-0 2 21:33:34$16 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2006-06-07 03:22:06 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 107 107 ); 108 108 109 // given the input string, search for all copies of the key, and replace with the replacement value 109 // Same as psStringSplit, but return result as an array 110 psArray *psStringSplitArray(const char *string, // String to split 111 const char *splitters, // Characters on which to split 112 bool multipleAreSignificant // Are multiple occurences significant? 113 ); 114 115 // Given the input string, search for all copies of the key, and replace with the replacement value 110 116 // the input string may be freed if not needed 111 char *psStringSubstitute ( 112 char *input, ///< input string to be modified 113 char *replace, ///< replacement value 114 char *key ///< string to be replaced in input 115 ); 117 char *psStringSubstitute (char *input, ///< input string to be modified 118 const char *replace, ///< replacement value 119 const char *key ///< string to be replaced in input 120 ); 121 122 // strip whitespace from head and tail of string 123 size_t psStringStrip(char *string); 124 116 125 117 126 /** @} */// Doxygen - End of SystemGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
