Skip to content

94. String Extractor

Destroyer edited this page Dec 13, 2021 · 1 revision

Namespace: StringExtract.Library

As the name implies - Extract all text string from any File.

String Extract

  • VB
   Dim FilePath As String = "File.exe"
   Dim StrExtractor As StringExtract.Library.Extractor = New StringExtract.Library.Extractor(5)
   Dim ExtractStrings As List(Of String) = StrExtractor.Extract(FilePath).ToList
  • C#
    string FilePath = "File.exe";
    StringExtract.Library.Extractor StrExtractor = new StringExtract.Library.Extractor(5);
    List<string> ExtractStrings = StrExtractor.Extract(FilePath).ToList;
Clone this wiki locally