Pages

Wednesday, May 5, 2010

Microsoft Excel VLOOKUP Function

 VLOOKUP Function in Excel:

JavaScript Replace

JavaScript String Replace All

The JavaScript function for String Replace replaces the first occurrence in the string. The function is similar to the php function str_replace and takes two simple parameters. The first parameter is the pattern to find and the second parameter is the string to replace the pattern with when found. The javascript function does not Replace All...
str = str.replace("find","replace");
To ReplaceAll you have to do it a little differently. To replace all occurrences in the string, use the g modifier like this:
str = str.replace(/find/g,"replace");
 
 

Saturday, April 10, 2010

Boomi On Demand Introduction

Boomi On Demand Introduction

WAMP Installation

WAMP Installation




Different way of WAMP Installation:
Install Apache, PHP, MySQL on Windows



Installing JAVA (JDK) on Windows

Installing JAVA (JDK) on Windows


Download JDK:

  1. Go to java.sun.com
  2. Click on Downloads > Java SE
  3. Click Download for JDK 6
  4. double click on the downloaded .exe file
  5. (click next, I agree, etc)

Setting Classpath:

  1. Right on My Computer
  2. Click on properties
  3. Click on Advanced System Settings
  4. Click on Environment variables
  5. Click on New under User Variables
  6. Type variable name as "Path"
  7. Type Variable Value as "C:\Program Files\Java\jdk1.6.0_12\bin" (or whatever it is on your machine)
  8. Click OK
  9. Click OK
  10. Open command prompt
  11. Type "javac" and hit enter
Loading