JavaScript Tutorial/String/replace — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:24, 26 мая 2010

String.replace()

Syntax



string.replace(regexpression, replacestring)


Using the replace() method of the String object

<html>
<head>
<title>Using the replace() method of the String object</title>
<script type="text/javascript" language="javascript">
<!-- //
var originalString = "A ab abc abcd";
var replacedString = "a";
var replacementString = "z";
var newString = originalString.replace(replacedString, replacementString);
document.write("<h3>" + newString + "</h3");
// -->
</script>
</head>
<body>
</body>
</html>