No, the inventory doesn’t show that level of sequence. This is something you can look for with a regular expression. If you type the following in the find window you should see the list you are looking for:
regex:, “\p{Ll}
This says, use Regular Expressions to look for a comma followed by a space and open quote and then a lower case letter. To be more inclusive of other punctuation you could use this:
regex:\p{P} [‘“]\p{Ll}
This says, use Regular expressions to look for any punctuation followed by either single or double quote and then a lowercase letter