spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column26


The New Replace Method's Lambda Expression

Developer News
Metasploit 3.2 Offers More 'Evil Deeds'
'Thank You Apple. Seriously.'
The Buzz: BlackBerry App Store Seen Next

JavaScript 1.3 supports a function specification in place of the second argument of the String object's replace() method. JavaScript 1.2 supports the specification of a string only:

replace(regexp, newSubStr)

while JavaScript 1.3 supports the optional syntax:

replace(regexp, newSubFun)

The usage of a function as an argument of another function is called a "lambda expression." The function is invoked after the match is done and it dynamically generates the replacement string for the matched substring. The replace method uses the new string that the function returns as its second argument. The new string is usually determined during the function execution. Among other sources, the function can use the matched substring (determined by regexp above) to generate the new string (newSubStr above). The first parameter of the function is the complete matched substring. Other parameters can be used for matched substrings, often called "parenthetical matches" (because they are delimited with parenthesis in the regular expression).

Let's take a simple example first. Suppose we have a string that includes both a prefix and a suffix, delimited by a period. The prefix consists of any number of p's, while the suffix consists of any number of s's. The string pppp.sss is an example for such a string. The task at hand is to exchange between the prefix and the suffix. The following replace method will do it:

"pppp.sss".replace(/(p*)\.(s*)/, function (str, p1, p2)) {
                                   return p2 + "." + p1;
                                 }
                  )

The task in the following example is to convert an AM/PM time representation to a military one. The regular expression partition differentiates between the hours and the minutes in the AM/PM notation. The hour count is stored in $1 while the minute count is stored in $2, and both are passed as parameters to the computemil function.

function ampm2mil(x) {
  var s = String(x)
  var partition = /(\d\d)\:(\d\d)(\D+)\b/g;
  return s.replace(
    partition, 
    computemil ($0, $1, $2) {
      if ($2 == "AM" || $2 == "Noon") return $0 + ":" + $1
      else if  ($2 == "PM" || $2 == "Midnight") return ($0 + 12) + ":" + $1;
    } 
  )

http://www.internet.com



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM Whitepaper: Innovative Collaboration to Advance Your Business
Internet.com eBook: Real Life Rails
Avaya Article: Call Control XML - Powerful, Standards-Based Call Control
Tripwire Whitepaper: Seven Practical Steps to Mitigate Virtualization Security Risks
Internet.com eBook: The Pros and Cons of Outsourcing
Go Parallel Article: Scalable Parallelism with Intel(R) Threading Building Blocks
Internet.com eBook: Best Practices for Developing a Web Site
IBM CXO Whitepaper: The 2008 Global CEO Study "The Enterprise of the Future"
Avaya Article: Call Control XML in Action - A CCXML Auto Attendant
Go Parallel Article: James Reinders on the Intel Parallel Studio Beta Program
IBM CXO Whitepaper: Unlocking the DNA of the Adaptable Workforce--The Global Human Capital Study 2008
Adobe Acrobat Connect Pro: Web Conferencing and eLearning Whitepapers
Go Parallel Article: Getting Started with TBB on Windows
HP eBook: Storage Networking , Part 1
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
Go Parallel Video: Intel(R) Threading Building Blocks: A New Method for Threading in C++
HP Video: Is Your Data Center Ready for a Real World Disaster?
Microsoft Partner Portal Video: Microsoft Gold Certified Partners Build Successful Practices
HP On Demand Webcast: Virtualization in Action
Go Parallel Video: Performance and Threading Tools for Game Developers
Rackspace Hosting Center: Customer Videos
Intel vPro Developer Virtual Bootcamp
HP Disaster-Proof Solutions eSeminar
HP On Demand Webcast: Discover the Benefits of Virtualization
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Microsoft Download: Silverlight 2 Software Development Kit Beta 2
30-Day Trial: SPAMfighter Exchange Module
Red Gate Download: SQL Toolbelt
Iron Speed Designer Application Generator
Microsoft Download: Silverlight 2 Beta 2 Runtime
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
IBM IT Innovation Article: Green Servers Provide a Competitive Advantage
Microsoft Article: Expression Web 2 for PHP Developers--Simplify Your PHP Applications
Featured Algorithm: Intel Threading Building Blocks - parallel_reduce
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES
webref The latest from WebReference.com Browse >
Popular JavaScript Framework Libraries: An Overview · Controllers: Programming Application Logic - Part 2 · How to Use JavaScript to Validate Form Data
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Choosing the Right Online Backup Provider · Mother Avaya Nurtures Her Technology Partners · Software as a Service a Winning Model for Hotspot Provider


Created: September 28, 1998
Revised: September 28, 1998

URL: http://www.webreference.com/js/column26/lambda.html