Rebol Tutorial

Rebol Programming - Learn Rebol with Real-World Examples

Tag archives for Parse

9 Mar by admin in HTML, Parsing

Parsing Optional Html Tag Attributes using none keyword

Parsing Optional Html Tag Attributes using none keyword
You really hate Regular Expressions and discovered the power of Parse with our simple parse tutorials. Nevertheless after a while, you feel frustrated because even after reading the excellent manual, you're still lacking some real world examples. So here's an example for using none with Parse. Let's say you want ...more»

Protected: How to parse an HTML Web Page to extract all zip-exe or tar.gz links without using RegEX

Protected: How to parse an HTML Web Page to extract all zip-exe or tar.gz links without using RegEX
There is no excerpt because this is a protected post.

Enter your password to view comments

Tags: , , , , , ,

6 Dec by admin in All, Automation, Code Generation, HTML, Parsing

HTML scaffolding - Create an HTML form by just writing its specification

HTML scaffolding - Create an HTML form by just writing its specification
Scaffolding is generally used for Database Persistence Framework, according to Wikipedia Scaffolding is a meta-programming method of building database-backed software applications. It is a technique supported by some model-view-controller frameworks, in which the programmer may write a specification that describes how the application database may be used. The compiler uses this ...more»

[Hot!] Create your own Domain Specific Language [DSL] in 15 minutes [part 1]

[Hot!] Create your own Domain Specific Language [DSL] in 15 minutes [part 1]
What is a Domain Specific Language (DSL) ? According to Wikipedia: A domain-specific language (DSL) is a programming language dedicated to a particular problem domain, a particular problem representation technique, and/or a particular solution technique. The concept isn't newbut the term has become more popular due to the rise of domain-specific ...more»
24 Jun by admin in All, Automation, Finance, Parsing

How to parse google finance csv file

How to parse google finance csv file
Do you need to retrieve stock market historical data from Google Finance (for example http://www.google.com/finance/historical?q=goog&output=csv) to do some calculation (for example calculate the average of last 20 days) ? So, in this lesson, you will learn how to: 1. Parse a CSV file to a Rebol's block (similar to other's programming ...more»
14 Jun by admin in All, Parsing

Extract (Parse) text on an html webpage WITHOUT using Regular Expression

Extract (Parse) text on an html webpage WITHOUT using Regular Expression
Do you need to do some webscrapping but do you hate Regular Expression ? Rebol is very good at that using some kind of natural language (dialect in its own semantic) thanks to 2 functions: load/markup and parse. One of the classical case is to just strip all html tags ...more»