Operator Like and Control Characters

  • Thread starter Dennis W. Bulgrien
  • Start date
D

Dennis W. Bulgrien

How can Like be used to match control characters such as a carriage return?
 
D

Dick Kusleika

Dennis

Build the ASCII code into the string like

If Mytext Like "a" & Chr(13) & "b"

for

a
b
 
Top