不,该清单不会显示这种级别的序列。您可以使用正则表达式来查找。如果在查找窗口中输入以下内容,您应该就能看到所需的列表:
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