How can I extract the addresses of all image开发者_StackOverflow社区s in an HTML file using Delphi, for example by using an HTML parser?You can use the IHTMLDocument2 interface to parse the HTML, chec
I\'m trying to create a simple game in Pascal. It uses the console. The goal in the game is to collect as many \'apples\' as you can in 60 seconds. The game structure is a simple infinite loop. Each i
How do i read in pascal a string and an integer in the same line like the C\'s scanf(\"%s %d\", str, &开发者_如何学Camp;n); version?I am sorry, but I am pretty sure there is no way. You must read them
English Translation (been a while, so may not be entirely accurate; used google translate for the parts I had trouble with):
I n开发者_JAVA技巧eed to see if one string is not the same AS EMPTY STRING. Something like: string != \'\';
Can you confirm my answer for the following code: procedure main var x,y,z; p开发者_开发知识库rocedure sub1
I\'ve got an assignment to do which involves seeing if there are any birthdays this month. I\'m开发者_JS百科 not asking for you to \'do my homework\', but what I am asking is this: is there a way to g
I\'m writing a section of code to read in CSV files and parse information out of them (currently I just have the beginning part of the code which will read in the headers at the beginning of the file.
I\'ve tried a couple of options available out there, such as Netcoole\'s Delphi2CS and TurnSharp. Both of \'em are for very simple code, if you have components it will generate tons of errors. My proj
I am trying to build a simple TCP and UDP proxies. No problem with the TCP proxy, however the UDP is a little more complex to handle. The classic proxy scenario would be like this.