Re: findstr doesn't always find



jkwold wrote:
I'm converting 300+ MSVC6 projects to VS2005 and fighting with .def
files (hooray for APIs and customers !) and the changes in mangled
names (particularly for CString :-) -- I've been depending on findstr
for much of the analysis, and just today found a case where the search
string wasn't always found. The string in question is:

?Initialize@CYpsBrowseIncludeDataDlg@@QAEXW4BrowseType@1@AAV?
$CStringT@GV?$StrTraitMFC_DLL@GV?$ChTraitsCRT@G@ATL@@

....
Thoughts ?

Strange, AFAIK findstr uses regex mode by default. Several $ signs to
anchor at line end aren't valid.
Did you try with /L and if necessary /I switches ?

HTH
Matthias
.



Relevant Pages

  • Re: findstr doesnt always find
    ... files (hooray for APIs and customers!) and the changes in mangled ... string wasn't always found. ... findstr fails somewhere beyond that -- trivia. ...
    (microsoft.public.win2000.cmdprompt.admin)
  • RE: Sync 3 related tables on a form
    ... You can try to maintain a multi query join string for the same purpose. ... Create a primary key in the Customers table. ... Create a relationship between the Orders table and the OrderDetails ...
    (microsoft.public.vb.database)
  • Re: Using Code to build criteria
    ... Dim strWhere as String ... The report however, still shows all Customers. ... Private Function BuildWhereCondition(strControl As String) As String ...
    (microsoft.public.access.queries)
  • Re: Danger of using FillMem() on a string? Speed of Abs()?
    ... doctors the string and then uses Dialogs.ShowMessage; ... >Hmmm, how do they do it on other OS's? ... 'Front' the APIs with your own version ... The nervousness is not about trying things out ...
    (comp.lang.pascal.delphi.misc)
  • Re: Overview of Paradox database structure and architecture
    ... multiplicity of customers and reports and libraries? ... Special customer reports are all stored in a folder with customers name, ... method CutToSize(s string, len smallint) string ... method CutToSizeAndAllign(s string, len smallint, right true) string ...
    (comp.databases.paradox)

Loading