Сообщение от nerv_
|
первый пост почитай
|
Читаю:
Сообщение от nerv_
|
alert( 'some text bla bla bla text la la la'.replace( /t(ext)/g, function( a, b ) { return '#' + b + '#';}) );
|
и вижу, что получается не то. Ну, напр. сделаем так:
alert( 'CLEAR="left" causes the next text line to start down as soon as the left margin is clear'.replace( /next t(ext)/g, function( a, b ) { return '#' + b + '#';}) );
Получается не
CLEAR="left" causes the
next t#ext# line to start down as soon as the left margin is clear
а
CLEAR="left" causes the
#ext# line to start down as soon as the left margin is clear