Using RegEx

"Nodding the head won't row the boat" (auld Irish expression)

We can use REGEX to Search a string for "row the boat", and display the position of the match:

using (/row the boat/i)
In the

Replacing strings

Row, Row, Row.....

Replace "row" with "paddle" in the p below:
In this case we use the (/\w*,/i,"paddle, ") to search for chrs and a comma, and replace with "paddle, "
If we change the i for g...

Row, row, 123, row, your boat

,