Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.74 KB

File metadata and controls

36 lines (26 loc) · 1.74 KB
title Finding Binary Data | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-windows
ms.topic conceptual
f1_keywords
vc.editors.binary
dev_langs
C++
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
author mikeblome
ms.author mblome
ms.workload
cplusplus
uwp

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