-
Notifications
You must be signed in to change notification settings - Fork 0
94. String Extractor
Destroyer edited this page Dec 13, 2021
·
1 revision
As the name implies - Extract all text string from any File.
- 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;
Remember that the documentation and examples may be subject to change, depending on the API updates.