P
Pawel
Suppose I would like to find any instance of small letter
(any small letter) in my document together with paraghraph
marks just after it (strings like: "a" + chr$(13), "b" +
chr$(13), ...).
I know I could do that in that way:
If (strText = ("a" + Chr$(13))) or (strText = ("b" +
chr$(13))) or ... Then
Is there a simpler way?
Thank you.
(any small letter) in my document together with paraghraph
marks just after it (strings like: "a" + chr$(13), "b" +
chr$(13), ...).
I know I could do that in that way:
If (strText = ("a" + Chr$(13))) or (strText = ("b" +
chr$(13))) or ... Then
Is there a simpler way?
Thank you.