不,該清單不會顯示那個層級的序列。您可以使用正規表示式來尋找。如果您在搜尋視窗中輸入以下內容,應該就能看到您要找的清單:
regex:, “\p{Ll}
這表示使用正規表示式來尋找逗號後接空格和開引號,然後是小寫字母。若要包含其他標點符號,您可以使用這個:
regex:\p{P} [‘“]\p{Ll}
這表示使用正規表示式來尋找任何標點符號後接單引號或雙引號,然後是小寫字母
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
機器翻譯自 English