VLOOKUP Function in Excel:
Wednesday, May 5, 2010
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");
Labels:
JavaScript,
Replace
Saturday, April 10, 2010
Boomi On Demand Introduction
Boomi On Demand Introduction
Labels:
Boomi,
Databases,
Salesforce,
SFTP
Installing JAVA (JDK) on Windows
Installing JAVA (JDK) on Windows
Download JDK:
Setting Classpath:
Download JDK:
- Go to java.sun.com
- Click on Downloads > Java SE
- Click Download for JDK 6
- double click on the downloaded .exe file
- (click next, I agree, etc)
Setting Classpath:
- Right on My Computer
- Click on properties
- Click on Advanced System Settings
- Click on Environment variables
- Click on New under User Variables
- Type variable name as "Path"
- Type Variable Value as "C:\Program Files\Java\jdk1.6.0_12\bin" (or whatever it is on your machine)
- Click OK
- Click OK
- Open command prompt
- Type "javac" and hit enter
Friday, April 9, 2010
Subscribe to:
Posts (Atom)