..:: 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        1208  0.3  0.4 1309672 74892 ?       Ssl   2025 1261:56 node /home/sasa/dex8/dex8-panel/server/index.js
sasa        1236  0.5  0.6 11821620 104472 ?     Ssl   2025 1992:42 node /home/sasa/mikosoft_hr/www-mikosoft-hr/server/index.js
sasa        1257  0.3  0.4 1304584 71184 ?       Ssl   2025 1278:05 node /home/sasa/mikosoft-info/www-mikosoft-info/server/index.js
sasa        1289  0.3  0.4 1299184 67340 ?       Ssl   2025 1259:11 node /home/sasa/dex8/dex8-kiosk/server/index.js
sasa        1363  4.2  2.9 12224576 478788 ?     Ssl   2025 15854:45 node /home/sasa/voovuu/voovuu-pub/server/index.js
sasa        1886  6.2  3.5 12246448 579096 ?     Ssl   2025 23041:23 node /home/sasa/mikosoft-info/crypto-mikosoft-info/server/index.
sasa     1214480  0.3  0.7 22311168 125204 ?     Ssl   2025 1028:41 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214483  0.3  0.4 1101312 65624 ?       Ssl   2025 931:41 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214536  0.3  0.4 1101060 66516 ?       Ssl   2025 930:09 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214544  0.3  0.4 1101032 65836 ?       Ssl   2025 937:32 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214588  0.3  0.3 1101316 64880 ?       Ssl   2025 932:35 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214617  0.3  0.3 1100672 65340 ?       Ssl   2025 929:35 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214641  0.3  0.4 1167720 66372 ?       Ssl   2025 920:29 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1214671  0.3  0.3 1100384 64172 ?       Ssl   2025 916:33 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1215731  0.6  0.7 11844700 125288 ?     Ssl   2025 1892:11 node /home/sasa/dex8/dex8-api/starter.js
sasa     1216489  0.3  0.4 1101560 65872 ?       Ssl   2025 929:29 node /home/sasa/dex8/dex8-worker/starter.js
sasa     1399960  0.8  0.6 11806812 109188 ?     Ssl  Apr20 953:18 node /home/sasa/dex8/dex8-www/server/index.js
sasa     1631573  0.4  0.5 1304296 82504 ?       Ssl  May31 242:09 node /home/sasa/.pm2/modules/pm2-logrotate/node_modules/pm2-logr
sasa     1653204  0.3  0.5 22292592 96300 ?      Ssl  Jul07   9:08 node /home/sasa/dex8/dex8-worker/starter.js
www-data 1877554  0.0  0.0   2608   528 ?        S    01:32   0:00 sh -c ps -aux | grep node
www-data 1877556  0.0  0.0   3304   708 ?        S    01:32   0:00 grep node
sasa     1904154  0.6  0.9 11861364 148788 ?     Ssl  Apr25 663:42 node /home/sasa/miko/miko-hr/server/index.js
sasa     2628167  0.8  0.8 1175772 132624 ?      Ssl   2025 2854:36 node /home/sasa/voovuu/voovuu-api/starter.js
sasa     3168557  0.6  0.5 11804248 95000 ?      Ssl   2025 2160:38 node /home/sasa/mikosoft-info/dodo-mikosoft-info/server/index.js
sasa     3169051  0.5  0.5 11799488 84080 ?      Ssl   2025 1792:33 node /home/sasa/@mikosoft/dodo-examples/server/index.js
sasa     3264954  0.7  0.5 1332680 86628 ?       Ssl  Feb21 1391:05 node /home/sasa/mikosoft-info/api-mikosoft-info/starter.js