Skip to content

Instantly share code, notes, and snippets.

@mckamey
Forked from 140bytes/LICENSE.txt
Created May 19, 2011 21:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mckamey/981851 to your computer and use it in GitHub Desktop.
Save mckamey/981851 to your computer and use it in GitHub Desktop.
Named string formatting
/**
* Populates a format string with a map of named values
*
* e.g. format('This is a named list: {one}, {two}, {two}, {three}', {one:1, two:'a', three:false})
* => 'This is a named list: 1, a, a, false'
*
* @param {string} s string format with named placeholders
* @param {Object} v map of named values
* @return {string} formatted string
*/
function (s, v) {
return s.replace(/\{([^}]+)\}/g, function (f, k) {
return v.hasOwnProperty(k) ? v[k] : f;
});
}
function(s,v){return s.replace(/\{([^}]+)\}/g,function(f,k){return v.hasOwnProperty(k)?v[k]:f})}
Copyright (c) 2011 Stephen M. McKamey, http://mck.me
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
{
"name": "named_string_format",
"description": "Populates a format string with a map of named values",
"keywords": [
"string",
"format",
"map",
"dictionary"
]
}
@atk
Copy link

atk commented Jun 9, 2011

That can be achieved easier by doing it all at once with a replace-callback (and don't replace what's not present):

function(s,o){return s.replace(/{([^}]+)}/g,function(f,k){return o.hasOwnProperty(k)?o[k]:f})}

Regards, atk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment