Jump to content
  • 0

глобальный поиск с заменой


youmay
 Share

Question

Здравствуйте. Подскажите, как можно сделать глобальный поиск с заменой:

например следующий код:

var rpl = ':)';
var str = 'раз :) два :) три :)';

str = str.replace(rpl, "@");

заменит только первое найденное вхождение - 'раз @ два :) три :)'

через регулярные выражения:

var rpl = ':)';
var str = 'раз :) два :) три :)';

var re = new RegExp(rpl,"g");

str = str.replace(rpl, "@");

выдаст ошибку unterminated parenthetical (незавершенная скобка)

пока сделал так:

var rpl = ':)';
var str = 'раз :) два :) три :)';
var str_1 = str;

do{
str = str_1;
str_1 = str.replace(rpl, "@");
} while(str_1 != str)

есть-ли другие способы?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0
No problem

var rpl = ":[)]";
var str = "раз :) два :) три :)";

var re = new RegExp(rpl, "g");
str = str.replace(re, "@");
alert(str);

Как я написал, rpl - динамическая переменная. Что же делать в таком случае:

for(var i = 0, str_1 = ''; i < 10; i++) str_1 += String.fromCharCode(Math.round(Math.random( )*100));

Каждый символ обрамлять [] а если символом будет [ или <

Тогда уж проще замену производить через циклы, как у меня сделано сейчас.

Link to comment
Share on other sites

  • 0
RegExp.escape = function(str) {
var specials = new RegExp("[.*+?|()\\[\\]{}\\\\]", "g");
return str.replace(specials, "\\$&");
}

var rpl = RegExp.escape(":)");
var re = new RegExp(rpl, "g");

var str = "раз :) два :) три :)";
str = str.replace(re, "@");
alert(str);

Спасибо, работает. Правда я все же надеялся на наличие в javascript аналога функции str_replace() из PHP.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy