Reply To: Finding partial words in italics

Home Page / Forums / General InDesign Topics (CLOSED) / Finding partial words in italics / Reply To: Finding partial words in italics

#14358868
Dhafir Photo
Participant

There is no difference between the code dot .+ and this regex, but I usually use this because it’s faster than the dot in search. (For me)
By the way, in this particular case, you can use many other codes or regex to catch the same result:
.+
\C+
\p{any}+
\p{assigned}+
[\V\v]+
[\W\w]+
[\H]+
[\D\d]+
[\S]+
or [\S]+

This article was last modified on February 18, 2022

Comments (0)

Loading comments...