fork(1) download
  1. import re
  2.  
  3. pattern = r"\bAmit Jawaharlaz Daryanani\b.*\n\s*(.*)\n"
  4.  
  5. s = ("Amit Jawaharlaz Daryanani, Evercore ISI Institutional Equities, Research Division - Senior MD & Fundamental Research Analyst [19]\n"
  6. " I have 2 as well. I guess, first off, on the channel inventory, I was hoping if you could talk about how did channel inventory look like in the March quarter because it sounds like it may be below the historical ranges. And then the discussion you had for June quarter performance of iPhones, what are you embedding from a channel building back inventory levels in that expectation?\n"
  7. " \n")
  8.  
  9. m = re.search(pattern, s, re.M)
  10. if m:
  11. print(m.group(1))
Success #stdin #stdout 0.04s 9364KB
stdin
Standard input is empty
stdout
I have 2 as well. I guess, first off, on the channel inventory, I was hoping if you could talk about how did channel inventory look like in the March quarter because it sounds like it may be below the historical ranges. And then the discussion you had for June quarter performance of iPhones, what are you embedding from a channel building back inventory levels in that expectation?