Skip to content

Latest commit

 

History

History
62 lines (52 loc) · 1.98 KB

File metadata and controls

62 lines (52 loc) · 1.98 KB
title Finding Binary Data | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
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
caps.latest.revision 9
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

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