i have a bunch of calls in a repo of code like this:
$out = $this->call('myApp.Settings.Menus.something.doSomething', $input);
I'd like to find all instances of it using regex where the first param of $this->call() contains only 1 period.
i'm getting closer, i think, with this: (?=\$this->call\(')(\.){1}(?=',)
Why isn't it limited to 1 period?