EnglishРусский  
 Share/Save/Bookmark
 

Ads

Installer and installation software
Commercial and Freeware installers.

str.eqlen...

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.

method uint str.eqlen (
   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.

method uint str.eqlenign (
   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.

method uint str.eqlen (
   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.

method uint str.eqlenign (
   str src
)

Parameters

src The string to be compared. The comparison is case-insensitive.

Related links

Source