str.eqlen...
- method uint str.eqlen( uint ptr )
- method uint str.eqlenign( uint ptr )
- method uint str.eqlen( str src )
- method uint str.eqlenign( str src )
Comparison. Compare a string with the specified data. The comparison is carried out only at the length of the string the method is called for.
uint ptr
)
Parameters
ptr | The pointer to the data to be compared. |
Return value
Returns 1 if there is an equality and 0 otherwise.
str.eqlenign
Compare a string with the specified data. The comparison is carried out only at the length of the string the method is called for.
uint ptr
)
Parameters
ptr | The pointer to the data to be compared. The comparison is case-insensitive. |
str.eqlen
Compare a string with the specified string. The comparison is carried out only at the length of the string the method is called for.
str src
)
Parameters
src | The string to be compared. |
str.eqlenign
Compare a string with the specified string. The comparison is carried out only at the length of the string the method is called for.
str src
)
Parameters
src | The string to be compared. The comparison is case-insensitive. |
Related links | Source |