..:: Source code - 035stringmethods_replace.js ::..

/**
 * String methods: replace
 * The replace() method returns a new string with some or all matches of a 
 * pattern replaced by a replacement.
 */
var str, x, xg, xi;

str = "simple example of simple string BIG big";

x = str.replace('simple', 'not simple'); //replace first match
xg = str.replace(/s\w+e/g, 'not simple'); //replace all matches
xi = str.replace(/BiG/i, 'SmaLL'); //case insensitive replacement


console.log(x); // not simple example of simple string BIG big
console.log(xg); // not simple example of not simple string BIG big
console.log(xi); // simple example of simple string SmaLL big
 

..:: NodeJS Console - 035stringmethods_replace.js ::..

$ node 035stringmethods_replace.js
not simple example of simple string BIG big
not simple example of not simple string BIG big
simple example of simple string SmaLL big
$ps -aux | grep node (list all node processes)
sasa        1194  0.4  0.5 1306652 85928 ?       Ssl   2025 1214:51 node /home/sasa/.pm2/modules/pm2-logrotate/node_modules/pm2-logr
sasa        1208  0.3  0.4 1305000 73416 ?       Ssl   2025 874:09 node /home/sasa/dex8/dex8-panel/server/index.js
sasa        1224  0.7  0.6 11828204 105884 ?     Ssl   2025 1968:41 node /home/sasa/dex8/dex8-www/server/index.js
sasa        1236  0.5  0.6 11819536 107324 ?     Ssl   2025 1383:04 node /home/sasa/mikosoft_hr/www-mikosoft-hr/server/index.js
sasa        1257  0.3  0.4 1304920 72584 ?       Ssl   2025 887:14 node /home/sasa/mikosoft-info/www-mikosoft-info/server/index.js
sasa        1289  0.3  0.4 1297836 67708 ?       Ssl   2025 872:33 node /home/sasa/dex8/dex8-kiosk/server/index.js
sasa        1363  4.6  2.9 12171588 477068 ?     Ssl   2025 11339:18 node /home/sasa/voovuu/voovuu-pub/server/index.js
sasa        1886  3.7  2.5 12082296 412300 ?     Ssl   2025 9155:36 node /home/sasa/mikosoft-info/crypto-mikosoft-info/server/index.
sasa      356539  0.4  0.5 11820040 93464 ?      Ssl  Apr11  15:31 node /home/sasa/miko/miko-hr/server/index.js
sasa      569674  0.3  0.3 1098848 63292 ?       Ssl  04:03   2:26 node /home/sasa/dex8/dex8-worker/starter.js
www-data  627015  0.0  0.0   2608   592 ?        S    16:26   0:00 sh -c ps -aux | grep node
www-data  627017  0.0  0.0   3304   720 ?        S    16:26   0:00 grep node
sasa     1214480  0.3  0.7 22311168 125860 ?     Ssl   2025 597:08 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214483  0.3  0.4 1103360 67308 ?       Ssl   2025 519:48 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214536  0.3  0.3 1100804 65324 ?       Ssl   2025 518:34 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214544  0.3  0.4 1101288 65948 ?       Ssl   2025 522:12 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214588  0.3  0.3 1100548 65008 ?       Ssl   2025 519:41 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214617  0.3  0.4 1100672 66240 ?       Ssl   2025 518:19 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214641  0.3  0.4 1102184 65540 ?       Ssl   2025 510:45 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214671  0.3  0.3 1101920 65480 ?       Ssl   2025 508:50 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1215731  0.6  0.7 11709880 124352 ?     Ssl   2025 1034:14 node /home/sasa/dex8/dex8-api/starter.js
sasa     1216489  0.3  0.3 1100792 65468 ?       Ssl   2025 517:50 node /home/sasa/dex8/dex8-worker/starter.js
sasa     2628167  0.8  0.8 1177176 131748 ?      Ssl   2025 1979:04 node /home/sasa/voovuu/voovuu-api/starter.js
sasa     3168557  0.6  0.6 11823212 98312 ?      Ssl   2025 1420:09 node /home/sasa/mikosoft-info/dodo-mikosoft-info/server/index.js
sasa     3169051  0.5  0.5 11799176 85128 ?      Ssl   2025 1171:57 node /home/sasa/@mikosoft/dodo-examples/server/index.js
sasa     3264954  0.6  0.5 1332072 85564 ?       Ssl  Feb21 499:24 node /home/sasa/mikosoft-info/api-mikosoft-info/starter.js