I'm trying to move some javascript code from MicrosoftAjax to JQuery. I use the javascript equivalents in MicrosoftAjax of the popular .net methods, e.g. String.format(), String.startsWith() .. etc, are there equivalents to them in JQuery?
Thanks
|
I'm trying to move some javascript code from MicrosoftAjax to JQuery. I use the javascript equivalents in MicrosoftAjax of the popular .net methods, e.g. String.format(), String.startsWith() .. etc, are there equivalents to them in JQuery? Thanks
| ||||
feedback
|
|
The source code for ASP.NET AJAX is available for your reference, so you can pick through it and include the parts you want to continue using into a separate JS file. Or, you can port them to jQuery. Here is the format function...
And here are the endsWith and startsWith prototype functions...
| |||||||||||||||||
feedback
|
|
This is a faster/simpler (and prototypical) variation of the function that Josh posted:
Usage:
I use this so much that I aliased it to just | ||||
|
feedback
|
|
Many of the above functions (except Julian Jelfs's) contain the following error:
Or, for the variants that count backwards from the end of the argument list:
Here's a correct function. It's a prototypal variant of Julian Jelfs's code, which I made a bit tighter:
And here is a slightly more advanced version of the same, which allows you to escape braces by doubling them:
This works correctly:
Here is another good implementation by Blair Mitchelmore, with a bunch of nice extra features: http://blairmitchelmore.com/javascript/string.format | |||||
feedback
|
|
There is an official option: jQuery.validator.format. Comes with jQuery validation plug-in 1.6 (at least). | |||||
feedback
|
|
Made a format function that takes either a collection or an array as arguments Usage:
Code:
| |||||||
feedback
|
|
Though not exactly what the Q was asking for, I've built one that is similar but uses named placeholders instead of numbered. I personally prefer having named arguments and just send in an object as an argument to it (more verbose, but easier to maintain).
Here's an example usage...
| |||||
|
feedback
|
|
None of the answers presented so far has no obvious optimization of using enclosure to initialize once and store regular expressions, for subsequent usages.
Also, none of the examples respects format() implementation if one already exists. | |||
|
feedback
|
|
If you're using the validation plugin you can use:
http://docs.jquery.com/Plugins/Validation/jQuery.validator.format#templateargumentargumentN... | ||||
|
feedback
|
|
I came across this while doing some Googling: jquery.strings.js. However, it looks like there may be a conflict with another jQuery plugin. User beware. Alternatively, depending on the situation, you could stick with using .net methods to format your strings. For example, if you are doing an ajax request, you could format the result with your web method before returning to the client-side. Acorn | |||
|
feedback
|
|
Here's mine:
Not bullet proof but works if you use it sensibly. | |||
|
feedback
|
|
Here's my version that is able to escape '{', and clean up those unassigned place holders.
| |||
|
feedback
|
|
I couldn't get Josh Stodola's answer to work, but the following worked for me. Note the specification of
| |||
feedback
|
| |||
|
feedback
|