
Search In
Sometimes we need to validate an email address using regex in our script in automation.
In the below code I have used "^[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)*@" + "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$" pattern which mean
Its a command prompt like Unix/Linux shell where we can entered command and get output in interactive mode. REPL, i.e. Read Eval Print Loop, environment is bundled with Node.Js and REPL performs the following tasks.
Read – I
Tuples is a new concept that is introduced in swift programing. Tuples group the multiple values in a single compound value. It is not necessary that the each tuples value should have the same datatype. The datatype can be different and number of val
Coding guidelines and Conventions
Every object like datasets, class objects and other reference type variables must be declared with null assignment and must be set to null or Disposed if the object implements IDisposable interface, once they are d
In php we have both constant and variable
A constant is a name for a value which can not be changed during the execution of the script.
It start with a letter or a underscore.
It start with constantname().
The differences-
There is no ne
"C# Naming Conventions and Coding Standards"
Naming Convention:
Basicaly three types of naming conventions are used in C#, Camel, Pascal and Hungarian.
We should use PascalCasing for class names and method names:
Example:
A function is a group of statements that does a special task. the function can be called repeatedly to execute the same statements.
The syntax of the user defined functions in php is as :
function functionName() {
code to be executed;
}
Here
In this blog, I am going to explain about the vendor specific css and the implementation of it.
What is Vendor Specific CSS ?
Vendor Specific CSS is an extension which added to the CSS property for different browsers. By using extension, we can apply
The final option is the creation of individual template files that are dedicated to overriding specific themable functions. This could be very helpful for the designer as PHP developer have done his work and designer now can do this XHTML and css w
Hello readers today we discussed about "Magic Functions in PHP".
Have you ever looked at the source code of open source PHP projects, you could have observed object methods that commence with a double underscore.
These are Magic Function