dam_strlikecmp
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This method compares the given string to the LIKE pattern. This method performs a case-insensitive comparison and ignores trailing blanks. This method can be used by the IP to match schema objects.
int dam_strlikecmp(
String pLikeString,
String pMatchString)
Parameters for dam_strlikecmp
| Parameter | Type | Description |
| INPUT | ||
| pLikeString | String | The pattern string against which to compare the input string. |
| pMatchString | String | The input string to be checked. |
| RETURN | ||
| int | TRUE - MatchString matches the LikeString pattern. FALSE - MatchString does not match the LikeString pattern. |
|