I've already had a chat with Will, but I wanted to add some other thoughts to the group as a whole:

Will asked how did people learn about Reg-Ex?   The answer of course, it depends. 

But if you were to take college-level CS courses in the late 60s or the 70s, as Bakul mentioned (I also had a similar experience), if you were going to be taught about automata and simple language theory -- likely in your first data structures and algorithms class, as certainly by the time you took a compiler course. My memory is I learned basic automata theory in the first, but did not see the idea of regular expressions until compilers [in my case, this is all pre-dragon book].   For all of you later in the 70s, Aho and Ullman's classic text would have exposed it to you.    FWIW: In the 2000's my daughter's college CS training, she never had to take a compiler or comparative languages course, but she was taught about reg-ex in her data structures course.

The key is you were taught a bit about automata theory, but if you really started to study it, you look at things like the performance of the different algorithms.  As Rob says, the key take away from learning about the reg-ex idea, is its linear performance.  So, if you were trained in some of the formal CS ideas, using reg-ex was not a huge lift. It was natural.  

That said, if you were coming from other systems using things like SOS or Teco (like me), they offered search functions also but the expressions but no in the same way.  It was a different way to do things, but people like me, quickly realized it was a lot more powerful and could do much more. "Ah ha .. cool beans, apply something I already knew about in a way I had not seen before ... next item ..."

So there are a few things to realize from this.  
  1. Adding things like reg-ex to tools like sed(1) and awk(1) were natural follow-ons to things like grep(1) and ed(1).
  2. If you were a CS person, it was not a big deal - just the more powerful "UNIX-way" as it were. But...
  3. If you came from another world of computing (say DEC or a PC)  where such tools were not exposed in a manner that was easy to build upon and/or you had never been taught much of any core CS theory [which is where Will cut his teeth], reg-ex might be astonishing.
So I think its not a question of why -- it was just how UNIX did things. It was a natural way for a programmer to express something.