I'm parsing large amounts of textual data using Regular Expressions in VBA within cells of an Excel document using Microsoft VBScript Regular Expressions 5.5.
I can't figure out how to create a Regular Expression phrase that WILL match something that reads: "deploy", "deploying", "deployment" but NOT something that says specifically "redeploy". So far I've tried the below expressions, to no avail:
(^[rR][eE])([dD][eE][pP][lL][oO][yY])
(^[rR][eE])?([dD][eE][pP][lL][oO][yY])
.(^[rR][eE])([dD][eE][pP][lL][oO][yY])
*(^[rR][eE])([dD][eE][pP][lL][oO][yY])
Could anyone spot what I'm doing wrong? Or is this not possible given how Regex functions?