NonStop SOAP 4.1 User's Manual

The axutil_strltrim()Function
Synopsis:
AXIS2_EXTERN axis2_char_t * axutil_strltrim
(const axutil_env_t *env,
const axis2_char_t *s,
const axis2_char_t *trim)
Description:
This function trims the sequence or pattern specified in trim from the left of the string.
Parameters:
env
is an input parameter and is a pointer to the environment structure. It cannot have a NULL
value.
s
is the string which is trimmed.
trim
specifies the sequence or pattern to be trimmed.
Return Values:
This function returns the new string.
The axutil_strrtrim() Function
Synopsis:
AXIS2_EXTERN axis2_char_t * axutil_strrtrim
(const axutil_env_t *env,
const axis2_char_t *_s,
const axis2_char_t *_trim)
Description:
This function trims the sequence or pattern specified in trim from the right of the string.
Parameters:
env
is an input parameter and is a pointer to the environment structure. It cannot have a NULL
value.
s
is the string which is trimmed.
trim
specifies the sequence or pattern to be trimmed.
Return Values:
This function returns the new string.
The axutil_strtrim() Function
Synopsis:
AXIS2_EXTERN axis2_char_t * axutil_strtrim
(const axutil_env_t *env,
const axis2_char_t *_s,
const axis2_char_t *_trim)
Description:
This function trims the sequence or pattern specified in trim from left or right of the string.
Parameters:
env
is an input parameter and is a pointer to the environment structure. It cannot have a NULL
value.
Utilities 385