
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Samual Sam has Published 2310 Articles

Samual Sam
36 Views
The IntlChar::isJavaIDPart() function is used to check whether the entered character is permissible in a java identifier character or not.SyntaxIntlChar::isJavaIDPart( val )Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::isJavaIDPart()function returns TRUE if val is a Java identifier character.ExampleThe following is an example −OutputThe following is ... Read More

Samual Sam
37 Views
The IntlChar::forDigit() function displays the character representation of specified digit in the specified radix.SyntaxIntlChar::forDigit(digit, radix )ParametersDigit − A number to convert to a characterRadix − The radix value. Default 10.ReturnThe IntlChar::forDigit() function returns the character representation of specified digit in the specified radix.ExampleThe following is an example −OutputThe following is the output ... Read More

Samual Sam
74 Views
The IntlChar::ord()function is used to return the Unicode code point value of the entered character.Syntaxint IntlChar::ord( char_unicode )Parameterschar_unicode − A Unicode CharacterReturnThe IntlChar::ord()function returns theUnicode value as an integer.ExampleThe following is an example −OutputThe following is the output −int(72) int(57)ExampleLet us see another example −OutputThe following is the output −int(37) ... Read More

Samual Sam
119 Views
The IntlChar::isULowercase() function is used to check whether the entered character is a Lowercase Unicode character or not.SyntaxIntlChar::isULowercase( val )Parametersval − The character to be checked encoded as a UTF-8 string.ReturnThe IntlChar::isULowercase() function returns TRUE if the entered value is a Lowercase Unicode character.ExampleThe following is an example −OutputThe following ... Read More

Samual Sam
106 Views
The IntlChar::isIDIgnorable() function is used to determine whether the entered value is an ignorable character or not.Syntaxbool IntlChar::isIDIgnorable(val)Parametersval − A character or integer value encoded as UTF-8 string.ReturnThe IntlChar::isIDIgnorable()function returns TRUE if the val is an ignorable character.ExampleThe following is an example −OutputThe following is the output −bool(false) bool(true) bool(false)Read More

Samual Sam
164 Views
The IntlChar::charAge() function is used to compute the age of the entered value, which is the Unicode version. This is when the value was first designated or assigned a character.Syntaxarray IntlChar::charAge( val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::charAge() function returns the Unicode version number ... Read More

Samual Sam
52 Views
The IntlChar::isJavaSpaceChar() function is used to check whether the entered value is a space character or not according to Java conventions.SyntaxIntlChar::isJavaSpaceChar(val)Parametersval − A character value encoded as a UTF-8 string.ReturnThe IntlChar::isJavaSpaceChar()function returns TRUE of val is a space character according to Java conventions.ExampleThe following is an example −OutputThe following is ... Read More

Samual Sam
523 Views
Create a function to check whether a string ends with the specified string or not. The function should return TRUE on success or FALSE on failure.The following is the syntax −endFunc(str, lastStr)Consider the following parameters in it to check −str − The string to be testedlastStr − The text to ... Read More

Samual Sam
113 Views
The IntlChar::isUUppercase() function checks whether the given input character is an Uppercase Unicode character or not.SyntaxIntlChar::isUUppercase(val)Parametersval − It is a character value, which is encoded as a UTF-8 string.ReturnThe IntlChar::isUUppercase() function returns TRUE if the val is an Uppercase Unicode character or not.ExampleThe following is an example −OutputThe following is ... Read More

Samual Sam
160 Views
The IntlChar::isspace() function check whether the given input character is a space character or not.SyntaxIntlChar::isspace(val)Parametersval − An integer value or character encoded as UTF-8 string.ReturnThe IntlChar::isspace()function returnsTRUE if the val is a space character.ExampleThe following is an example −OutputThe following is the output −NULL bool(true) bool(true)ExampleLet us see another example ... Read More