import re

pattern = r"\bAmit Jawaharlaz Daryanani\b.*\n\s*(.*)\n"

s = ("Amit Jawaharlaz Daryanani,  Evercore ISI Institutional Equities, Research Division - Senior MD & Fundamental Research Analyst   [19]\n"
     " 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"
     " \n")

m = re.search(pattern, s, re.M)
if m:
    print(m.group(1))