When did all browsers start supporting the String.replace(regexp, replacement_function)?

落花浮王杯 提交于 2019-12-18 19:01:56

问题


According to the 6th Edition of JavaScript: The Definitive Guide (Flanagan, 2011):

ECMAScript v3 specifies that the replacement argument to replace() may be a function instead of a string.

I'm looking at some code written in 2005, where a complicated workaround has been used to replace parts of a string. The comments for the code clearly indicate that it originally used the functional replace() method but that the workaround was necessary for cross-browser compatibility.

ECMAScript v3 came out in 1999 and, as far as I can tell (from this discussion post and this blog post), ECMAScript v3 was supported across the main browsers since late 2001. Could the author have been wrong, or can someone shed light on why such a workaround might have been necessary in 2005?

...

UPDATE The actual comment by the author of the code says:

lambda functions in RegExps are currently a problem with too many browsers.

changed code to work around.

The author code works for or runs this business, though the code itself may well be a personal project.


回答1:


This answer is based on the comments to the question above (with special thanks to kangax, whose answer I will likely accept if he chooses to leave one!)

Whilst it's possible that I could have been reading "too many browsers" literally, it's also possible that String.replace() with a function as the argument was a problem in Safari 2.x (using JavaScriptCore) and in IEMac 5.x in the year 2005. Evidence of these problems in that time exists here, and with those particular versions of the aformentioned browsers here.

In fact the workaround mentioned by Gavin Kistner on the first of those pages is one whose performance may be better in some browsers than the functional replace method, as discussed here.

Nevertheless, performance aside, it seems (as I suspected) that a functional replace is acceptable in all browsers today.

Many thanks to all commenters on this question.



来源:https://stackoverflow.com/questions/15987403/when-did-all-browsers-start-supporting-the-string-replaceregexp-replacement-fu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!