Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1.53 KB

File metadata and controls

30 lines (19 loc) · 1.53 KB
title Finding Binary Data (C++)
ms.date 11/04/2016
f1_keywords
vc.editors.binary
helpviewer_keywords
hexadecimal bytes in binary data
strings [C++], searching for
file searches [C++]
binary data, finding
ASCII characters, finding in binary data
ms.assetid 1675b19c-66e3-4040-82c2-5dde4b1793f8

Finding Binary Data

You can search for either ASCII strings or hexadecimal bytes. For example, to find "Hello," you can search for either the string "Hello" or for "48 65 6C 6C 6F" (the hexadecimal equivalent).

To find binary data

  1. From the Edit menu, click Find.

  2. In the Find What box, select a previous search string from the drop-down list or type the data you want to find.

  3. Select any of the Find options.

  4. Click Find Next.

For information on adding resources to managed projects, please see Resources in Desktop Apps in the .NET Framework Developer's Guide. For information on manually adding resource files to managed projects, accessing resources, displaying static resources, and assigning resource strings to properties, see Creating Resource Files for Desktop Apps. For information on globalization and localization of resources in managed apps, see Globalizing and Localizing .NET Framework Applications.

Requirements

None

See Also

Binary Editor