[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: string.find
- From: "Jeff Wise" <jwise@...>
- Date: Thu, 9 Oct 2008 09:53:17 -0500
I have a Lua function that includes:
local s = string.find(buffer, ff)
The ff is defined as 0x0C (a form feed), and is a "special character". The
find is "finding" form feeds where there are none (as verified with a hex
editor). Is there a problem in using this string function for finding
special characters? If so, how do I search buffer for a form feed?