Rebol Tutorial

Rebol Programming - Learn Rebol with Real-World Examples

Tag archives for HTML

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: , , , , , ,

8 Dec by admin in All, HTML, Image, Interoperability, cgi

Building a Dynamic Web Gallery WITHOUT MySQL DB (or How to smoothly transition from PHP to Rebol)

Building a Dynamic Web Gallery WITHOUT MySQL DB (or How to smoothly transition from PHP to Rebol)
I have found a simple Php Gallery here. You can test it by clicking on the picture below: It is originally composed of a front gallery.php file plus these include files: . The add-images.php file contains this loop to generate the addimages array used by gallery.php (the one in the same directory): The documentation ...more»
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»
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»