String Operations
Function
|
Purpose
|
findstr
|
Find a substring within a string.
|
lower
|
Convert string to lower case.
|
strcat
|
String concatenation.
|
strcmp
|
Compare strings.
|
strcmpi
|
Compare strings ignoring case.
|
strjust
|
Justify a character array.
|
strmatch
|
Find possible matches for a string.
|
strncmp
|
Compare the first n characters of two strings.
|
strncmpi
|
Compare first n characters of strings ignoring case.
|
strrep
|
Replace substrings within a string.
|
strtok
|
Extract tokens from a string.
|
strvcat
|
Vertical concatenation of strings.
|
upper
|
Convert string to upper case.
|