Javascript string Manipulation

Javascript string ManipulationString Manipulation in Javascript can be done in various ways. We may need to get IndexOf string in Javascript, may be split the string in Javascript or perform client side postback using javascript. Below are some way:JavaScript string IndexOfJavaScript split string Clientside Postback- Javascrip...

Split string JavaScript

In JavaScript we need to split the string to perform some operations on string. JavaScript uses Split() method to split the given string in JavaScript. Split() method basically split string into array of substrings and generates new array.String split...

Base64 to String [C#]

In this post we will see how to convert Base64 string to string. .Net provides .FromBase64String() method in System.Convert class to convert Base64 string to string. While converting Base64 string to string it first converts base64 string to byte array...