Click here to Skip to main content
15,891,920 members
Home / Discussions / C#
   

C#

 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
pr1mem0ver7-Nov-20 5:00
pr1mem0ver7-Nov-20 5:00 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
Gerry Schmitz7-Nov-20 5:37
mveGerry Schmitz7-Nov-20 5:37 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
pr1mem0ver7-Nov-20 13:25
pr1mem0ver7-Nov-20 13:25 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
Gerry Schmitz8-Nov-20 5:53
mveGerry Schmitz8-Nov-20 5:53 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
pr1mem0ver16-Nov-20 14:58
pr1mem0ver16-Nov-20 14:58 
AnswerRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
OriginalGriff8-Nov-20 1:35
mveOriginalGriff8-Nov-20 1:35 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
pr1mem0ver16-Nov-20 15:10
pr1mem0ver16-Nov-20 15:10 
AnswerRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
Richard Deeming8-Nov-20 21:39
mveRichard Deeming8-Nov-20 21:39 
GeneralRe: Weird problem with Custom StreamReader with Read override not reading correct number of bytes during base method call Pin
pr1mem0ver16-Nov-20 15:06
pr1mem0ver16-Nov-20 15:06 
QuestionSystem.IO.File.WriteAllLines exception Pin
_Flaviu5-Nov-20 23:52
_Flaviu5-Nov-20 23:52 
AnswerRe: System.IO.File.WriteAllLines exception Pin
Richard MacCutchan6-Nov-20 0:01
mveRichard MacCutchan6-Nov-20 0:01 
AnswerRe: System.IO.File.WriteAllLines exception Pin
OriginalGriff6-Nov-20 0:18
mveOriginalGriff6-Nov-20 0:18 
GeneralRe: System.IO.File.WriteAllLines exception Pin
_Flaviu6-Nov-20 2:33
_Flaviu6-Nov-20 2:33 
AnswerRe: System.IO.File.WriteAllLines exception Pin
Richard MacCutchan6-Nov-20 5:21
mveRichard MacCutchan6-Nov-20 5:21 
GeneralRe: System.IO.File.WriteAllLines exception Pin
_Flaviu7-Nov-20 21:08
_Flaviu7-Nov-20 21:08 
QuestionHow to extract part of HTML source? Pin
Member 5697394-Nov-20 7:53
Member 5697394-Nov-20 7:53 
AnswerRe: How to extract part of HTML source? Pin
OriginalGriff4-Nov-20 8:37
mveOriginalGriff4-Nov-20 8:37 
GeneralRe: How to extract part of HTML source? Pin
Member 5697394-Nov-20 9:12
Member 5697394-Nov-20 9:12 
AnswerRe: How to extract part of HTML source? Pin
Richard Andrew x644-Nov-20 14:11
professionalRichard Andrew x644-Nov-20 14:11 
AnswerRe: How to extract part of HTML source? Pin
DerekT-P4-Nov-20 23:29
professionalDerekT-P4-Nov-20 23:29 
Bear in mind that a large proportion of websites have T+Cs that explicitly stop you doing that.

I used to do a lot of small web-scraping jobs for a variety of clients; first task was always scour the site T+Cs to check it was permitted.

When I was doing it a lot there weren't any 3rd party tools available, so it's just a case of pulling out the parts of the string you want. In your case I'd search for
Member 569739 wrote:
type="application/ld+json"
(either using a simple ".indexOf()" call or using RegEx), check how many such script blocks there were, and continue likewise to pull out the bits I need. Pretty basic string manipulation.

In this case, though, since the whole of what you want is JSON, just load it up using Newtonsoft.JSON and then access the objects directly:
C#
JObject myJsonObject = JObject.Parse(myJsonText);

GeneralRe: How to extract part of HTML source? Pin
Richard Deeming4-Nov-20 23:36
mveRichard Deeming4-Nov-20 23:36 
GeneralRe: How to extract part of HTML source? Pin
DerekT-P5-Nov-20 0:26
professionalDerekT-P5-Nov-20 0:26 
GeneralRe: How to extract part of HTML source? Pin
Member 5697395-Nov-20 3:56
Member 5697395-Nov-20 3:56 
QuestionHow to switch the whole DataGridView Left-To-right? Pin
Alex Dunlop4-Nov-20 7:46
Alex Dunlop4-Nov-20 7:46 
AnswerRe: How to switch the whole DataGridView Left-To-right? Pin
BillWoodruff4-Nov-20 14:21
professionalBillWoodruff4-Nov-20 14:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.