I have the following string.
hello babby, how are yyou
I want to select the 'abb' from baby..... but I want to do this very specifically. Right now Im using
The problem is that I do not want the initial B from babby. I need to get regex to select the word/character AFTER the initial B, and the word/character BEFORE the final Y. so that i still get ABB (excluding the B and Y from BABBY)
Let me know
hello babby, how are yyou
I want to select the 'abb' from baby..... but I want to do this very specifically. Right now Im using
Code:
\bb(\w*)\b
Let me know