Advanced Regular Expressions for the Truly Insane
// Match all words with more than 3 letters /[^a-zA-Z]/g
// Match all lines that start with 'Error:' /^Error:/
// Match all words with more than 3 letters /[^a-zA-Z]/g
// Match all lines that start with 'Error:' /^Error:/