Starting a web browser

From Rosetta Code
Starting a web browser is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Build and show a web page displaying the data from the task separate the house number from the street name in a formatted and colored table.

Task

Write the code which automatically opens a web page in a browser showing the addresses. No static data must be shown, only processed data.


EchoLisp

Since we are already in a browser window, the browser is started. print-hatml sends an html string to the standard output area. The table is styled with the "htable" css class, which is included in EchoLisp. <lang scheme>

table from "Separate_the_house_number_from_the_street_name"

(print-html (table->html adresses)) </lang>

Output:
Plataanstraat 5
Straat 12
Straat 12 II
Straat 1940 II
Dr. J. Straat 40
Dr. J. Straat 12 a
Dr. J. Straat 12-14
Laan 1940 – 1945 37
Plein 1940 2
1213-laan 11
16 april 1944 Pad 1
1e Kruisweg 36
Laan 1940-'45 66
Laan '40-'45 ❓❓❓
Langeloërduinen 3 46
Marienwaerdt 2e Dreef 2
Provincialeweg N205 1
Rivium 2e Straat 59.
Nieuwe gracht 20rd
Nieuwe gracht 20rd 2
Nieuwe gracht 20zw /2
Nieuwe gracht 20zw/3
Nieuwe gracht 20 zw/4
Bahnhofstr. 4
Wertstr. 10
Lindenhof 1
Nordesch 20
Weilstr. 6
Harthauer Weg 2
Mainaustr. 49
August-Horch-Str. 3
Marktplatz 31
Schmidener Weg 3
Karl-Weysser-Str. 6

Go

This uses the same format and color scheme for the table as the Perl 6 entry. <lang go>package main

import (

   "fmt"
   "html/template"
   "log"
   "os"
   "os/exec"
   "strings"
   "time"

)

type row struct {

   Address, Street, House, Color string

}

func isDigit(b byte) bool {

   return '0' <= b && b <= '9'

}

func separateHouseNumber(address string) (street string, house string) {

   length := len(address)
   fields := strings.Fields(address)
   size := len(fields)
   last := fields[size-1]
   penult := fields[size-2]
   if isDigit(last[0]) {
       isdig := isDigit(penult[0])
       if size > 2 && isdig && !strings.HasPrefix(penult, "194") {
           house = fmt.Sprintf("%s %s", penult, last)
       } else {
           house = last
       }
   } else if size > 2 {
       house = fmt.Sprintf("%s %s", penult, last)
   }
   street = strings.TrimRight(address[:length-len(house)], " ")
   return

}

func check(err error) {

   if err != nil {
       log.Fatal(err)
   }

}

var tmpl = ` <head>

 <title>Rosetta Code - Start a Web Browser</title>
 <meta charset="UTF-8">

</head> <body bgcolor="#d8dcd6">

Split the house number from the street name

     Template:Range $row := .
Template:End

AddressStreetHouse Number
Template:$row.Address Template:$row.Street Template:$row.House

</body> ` func main() {

   addresses := []string{
       "Plataanstraat 5",
       "Straat 12",
       "Straat 12 II",
       "Dr. J. Straat   12",
       "Dr. J. Straat 12 a",
       "Dr. J. Straat 12-14",
       "Laan 1940 - 1945 37",
       "Plein 1940 2",
       "1213-laan 11",
       "16 april 1944 Pad 1",
       "1e Kruisweg 36",
       "Laan 1940-'45 66",
       "Laan '40-'45",
       "Langeloërduinen 3 46",
       "Marienwaerdt 2e Dreef 2",
       "Provincialeweg N205 1",
       "Rivium 2e Straat 59.",
       "Nieuwe gracht 20rd",
       "Nieuwe gracht 20rd 2",
       "Nieuwe gracht 20zw /2",
       "Nieuwe gracht 20zw/3",
       "Nieuwe gracht 20 zw/4",
       "Bahnhofstr. 4",
       "Wertstr. 10",
       "Lindenhof 1",
       "Nordesch 20",
       "Weilstr. 6",
       "Harthauer Weg 2",
       "Mainaustr. 49",
       "August-Horch-Str. 3",
       "Marktplatz 31",
       "Schmidener Weg 3",
       "Karl-Weysser-Str. 6",
   }
   browser := "firefox" // or whatever
   colors := [2]string{"#d7fffe", "#9dbcd4"}
   fileName := "addresses_table.html"
   ct := template.Must(template.New("").Parse(tmpl))
   file, err := os.Create(fileName)
   check(err)
   rows := make([]row, len(addresses))
   for i, address := range addresses {
       street, house := separateHouseNumber(address)
       if house == "" {
           house = "(none)"
       }
       color := colors[i%2]
       rows[i] = row{address, street, house, color}
   }   
   err = ct.Execute(file, rows)
   check(err)
   cmd := exec.Command(browser, fileName)
   err = cmd.Run()
   check(err)
   file.Close()
   time.Sleep(5 * time.Second) // wait for 5 seconds before deleting file
   err = os.Remove(fileName)
   check(err)

}</lang>

Output:
Similar to the Perl 6 entry.


Julia

<lang julia>using Tables, BrowseTables

function testbrowsertable(addresstext)

   lines = strip.(split(addresstext, "\n"))
   mat = fill("", length(lines), 2)
   regex = r"""^ (.*?) \s+
                 (
                     \d* (\-|\/)? \d*
                   | \d{1,3} [a-zI./ ]* \d{0,3}
                 )
           $"""x
   for (i, line) in enumerate(lines)
       if (matched = match(regex, line)) != nothing
           mat[i, 1], mat[i, 2] = matched.captures
       end
   end
   data = Tables.table(mat)
   tmp = tempname() * ".html"
   write_html_table(tmp, data)
   if Sys.isapple()
       run(`open $tmp`)
   elseif Sys.iswindows()
       run(`cmd /c start $tmp`)
   else # linux etc.
       run(`xdg-open $tmp`)
   end
   println("Press Enter after you close the browser to exit and remove temp file.")
   readline()
   rm(tmp)

end

const adressen = """

   Plataanstraat 5
   Straat 12
   Straat 12 II
   Dr. J. Straat   12
   Dr. J. Straat 12 a
   Dr. J. Straat 12-14
   Laan 1940 – 1945 37
   Plein 1940 2
   1213-laan 11
   16 april 1944 Pad 1
   1e Kruisweg 36
   Laan 1940-’45 66
   Laan ’40-’45
   Langeloërduinen 3 46
   Marienwaerdt 2e Dreef 2
   Provincialeweg N205 1
   Rivium 2e Straat 59.
   Nieuwe gracht 20rd
   Nieuwe gracht 20rd 2
   Nieuwe gracht 20zw /2
   Nieuwe gracht 20zw/3
   Nieuwe gracht 20 zw/4
   Bahnhofstr. 4
   Wertstr. 10
   Lindenhof 1
   Nordesch 20
   Weilstr. 6
   Harthauer Weg 2
   Mainaustr. 49
   August-Horch-Str. 3
   Marktplatz 31
   Schmidener Weg 3
   Karl-Weysser-Str. 6"""

testbrowsertable(adressen) </lang>

Perl

Borrowing code from the Separate the house number from the street name task.

Translation of: Perl 6

<lang perl>use File::Temp qw(tempfile);

my @addresses = ( 'Plataanstraat 5', 'Straat 12', 'Straat 12 II', 'Dr. J. Straat 12', 'Dr. J. Straat 12 a', 'Dr. J. Straat 12-14', 'Laan 1940 – 1945 37', 'Plein 1940 2', '1213-laan 11', '16 april 1944 Pad 1', '1e Kruisweg 36', 'Laan 1940-’45 66', 'Laan ’40-’45', 'Langeloërduinen 3 46', 'Marienwaerdt 2e Dreef 2', 'Provincialeweg N205 1', 'Rivium 2e Straat 59.', 'Nieuwe gracht 20rd', 'Nieuwe gracht 20rd 2', 'Nieuwe gracht 20zw /2', 'Nieuwe gracht 20zw/3', 'Nieuwe gracht 20 zw/4', 'Bahnhofstr. 4', 'Wertstr. 10', 'Lindenhof 1', 'Nordesch 20', 'Weilstr. 6', 'Harthauer Weg 2', 'Mainaustr. 49', 'August-Horch-Str. 3', 'Marktplatz 31', 'Schmidener Weg 3', 'Karl-Weysser-Str. 6');


my @row_color = ('#d7fffe', '#9dbcd4');

  1. build the table

sub genTable {

my $table = '

' . qq|\n|;
   my $i = 0;
   for my $addr (@addresses) {
$table .= qq||;
       my($street,$number) =  $addr =~
       m[^ (.*?) \s+
           (
              \d* (\-|\/)? \d*
            | \d{1,3} [a-zI./ ]* \d{0,3}
           ) $
        ]x;
       if (!$number) { $street = $addr; $number = '(no match)' }
$table .= qq|\n|;
   }
return $table . '
AddressStreetHouse Number
$addr$street$number

';

}

my $streets_and_numbers = genTable();

  1. generate the page content

sub content { return <<END; <html> <head> <title>Rosetta Code - Start a Web Browser</title> <meta charset="UTF-8"> </head> <body bgcolor="#d8dcd6">

Split the house number from the street name

$streets_and_numbers

</body> </html> END }

  1. Use a temporary file name and file handle

my ($fn, $fh) = tempfile :suffix('.html');

  1. dump the content to the file

open my $fh, '>', $fn; print $fh content(); close $fh;

  1. use appropriate command for X11 (other systems will need different invocation)

my $command = "xdg-open $fn";

  1. start the browser

system "$command";

  1. wait for a bit to give browser time to load before destroying temp file

sleep 5; </lang>

Output:
AddressStreetHouse Number
Plataanstraat 5Plataanstraat5
Straat 12Straat12
Straat 12 IIStraat12 II
Dr. J. Straat 12Dr. J. Straat12
Dr. J. Straat 12 aDr. J. Straat12 a
Dr. J. Straat 12-14Dr. J. Straat12-14
Laan 1940 – 1945 37Laan 1940 – 194537
Plein 1940 2Plein 19402
1213-laan 111213-laan11
16 april 1944 Pad 116 april 1944 Pad1
1e Kruisweg 361e Kruisweg36
Laan 1940-’45 66Laan 1940-’4566
Laan ’40-’45Laan ’40-’45(no match)
Langeloërduinen 3 46Langeloërduinen3 46
Marienwaerdt 2e Dreef 2Marienwaerdt 2e Dreef2
Provincialeweg N205 1Provincialeweg N2051
Rivium 2e Straat 59.Rivium 2e Straat59.
Nieuwe gracht 20rdNieuwe gracht20rd
Nieuwe gracht 20rd 2Nieuwe gracht20rd 2
Nieuwe gracht 20zw /2Nieuwe gracht20zw /2
Nieuwe gracht 20zw/3Nieuwe gracht20zw/3
Nieuwe gracht 20 zw/4Nieuwe gracht20 zw/4
Bahnhofstr. 4Bahnhofstr.4
Wertstr. 10Wertstr.10
Lindenhof 1Lindenhof1
Nordesch 20Nordesch20
Weilstr. 6Weilstr.6
Harthauer Weg 2Harthauer Weg2
Mainaustr. 49Mainaustr.49
August-Horch-Str. 3August-Horch-Str.3
Marktplatz 31Marktplatz31
Schmidener Weg 3Schmidener Weg3
Karl-Weysser-Str. 6Karl-Weysser-Str.6

Perl 6

Works with: Rakudo version 2017.09

Uses the code from the Separate the house number from the street name task almost verbatim. Included here to make a complete, runnable example.

<lang perl6>use File::Temp;

my $addresses = qq :to /END/;

   Plataanstraat 5
   Straat 12
   Straat 12 II
   Dr. J. Straat   12
   Dr. J. Straat 12 a
   Dr. J. Straat 12-14
   Laan 1940 – 1945 37
   Plein 1940 2
   1213-laan 11
   16 april 1944 Pad 1
   1e Kruisweg 36
   Laan 1940-’45 66
   Laan ’40-’45
   Langeloërduinen 3 46
   Marienwaerdt 2e Dreef 2
   Provincialeweg N205 1
   Rivium 2e Straat 59.
   Nieuwe gracht 20rd
   Nieuwe gracht 20rd 2
   Nieuwe gracht 20zw /2
   Nieuwe gracht 20zw/3
   Nieuwe gracht 20 zw/4
   Bahnhofstr. 4
   Wertstr. 10
   Lindenhof 1
   Nordesch 20
   Weilstr. 6
   Harthauer Weg 2
   Mainaustr. 49
   August-Horch-Str. 3
   Marktplatz 31
   Schmidener Weg 3
   Karl-Weysser-Str. 6
   END

my @row-color = '#d7fffe', '#9dbcd4';

  1. build the table

sub genTable () {

my $table = '

' ~ qq|\n|;
   my $i = 0;
   for $addresses.lines -> $addr {
$table ~= qq||;
       $addr ~~ m[
           ( .*? )
           [
               \s+
               (
               | \d+ [ \- | \/ ] \d+
               | <!before 1940 | 1945> \d+ <[ a..z I . / \x20 ]>* \d*
               )
           ]?
           $
       ];
quietly $table ~= qq|\n|;
   }
$table ~ '
AddressStreetHouse Number
{$addr}{$0.Str}{$1.Str||}

';

}

  1. generate the page content

sub content {

   qq :to /END/;
   <html>
   <head>
   <title>Rosetta Code - Start a Web Browser</title>
   <meta charset="UTF-8">
   </head>
   <body bgcolor="#d8dcd6">

Split the house number from the street name

{ genTable }

   </body>
   </html>
   END

}

  1. Use a temporary file name and file handle

my ($fn, $fh) = tempfile :suffix('.html');

  1. dump the content to the file

$fh.spurt: content;

  1. use appropriate command for Windows or X11
  2. other OSs/WMs may need different invocation

my $command = $*DISTRO.is-win ?? "start $fn" !! "xdg-open $fn";

  1. start the browser

shell $command;

  1. wait for a bit to give browser time to load before destroying temp file

sleep 5; </lang>

Output:

Will start the default browser (or open a new tab/window in a running one) and display this table.

AddressStreetHouse Number
Plataanstraat 5Plataanstraat5
Straat 12Straat12
Straat 12 IIStraat12 II
Dr. J. Straat 12Dr. J. Straat12
Dr. J. Straat 12 aDr. J. Straat12 a
Dr. J. Straat 12-14Dr. J. Straat12-14
Laan 1940 – 1945 37Laan 1940 – 194537
Plein 1940 2Plein 19402
1213-laan 111213-laan11
16 april 1944 Pad 116 april 1944 Pad1
1e Kruisweg 361e Kruisweg36
Laan 1940-’45 66Laan 1940-’4566
Laan ’40-’45Laan ’40-’45
Langeloërduinen 3 46Langeloërduinen3 46
Marienwaerdt 2e Dreef 2Marienwaerdt 2e Dreef2
Provincialeweg N205 1Provincialeweg N2051
Rivium 2e Straat 59.Rivium 2e Straat59.
Nieuwe gracht 20rdNieuwe gracht20rd
Nieuwe gracht 20rd 2Nieuwe gracht20rd 2
Nieuwe gracht 20zw /2Nieuwe gracht20zw /2
Nieuwe gracht 20zw/3Nieuwe gracht20zw/3
Nieuwe gracht 20 zw/4Nieuwe gracht20 zw/4
Bahnhofstr. 4Bahnhofstr.4
Wertstr. 10Wertstr.10
Lindenhof 1Lindenhof1
Nordesch 20Nordesch20
Weilstr. 6Weilstr.6
Harthauer Weg 2Harthauer Weg2
Mainaustr. 49Mainaustr.49
August-Horch-Str. 3August-Horch-Str.3
Marktplatz 31Marktplatz31
Schmidener Weg 3Schmidener Weg3
Karl-Weysser-Str. 6Karl-Weysser-Str.6

Phix

<lang Phix>constant addresses = {"Plataanstraat 5",

                     "Straat 12",
                     "Straat 12 II",
                     "Dr. J. Straat   12",
                     "Dr. J. Straat 12 a",
                     "Dr. J. Straat 12-14",
                     "Laan 1940 - 1945 37",
                     "Plein 1940 2",
                     "1213-laan 11",
                     "16 april 1944 Pad 1",
                     "1e Kruisweg 36",
                     "Laan 1940-'45 66",
                     "Laan '40-'45",
                     "Langeloërduinen 3 46",
                     "Marienwaerdt 2e Dreef 2",
                     "Provincialeweg N205 1",
                     "Rivium 2e Straat 59.",
                     "Nieuwe gracht 20rd",
                     "Nieuwe gracht 20rd 2",
                     "Nieuwe gracht 20zw /2",
                     "Nieuwe gracht 20zw/3",
                     "Nieuwe gracht 20 zw/4",
                     "Bahnhofstr. 4",
                     "Wertstr. 10",
                     "Lindenhof 1",
                     "Nordesch 20",
                     "Weilstr. 6",
                     "Harthauer Weg 2",
                     "Mainaustr. 49",
                     "August-Horch-Str. 3",
                     "Marktplatz 31",
                     "Schmidener Weg 3",
                     "Karl-Weysser-Str. 6"}

function isDigit(integer ch)

   return ch>='0' and ch<='9'

end function

function separateHouseNumber(integer i)

   string address = addresses[i]
   sequence parts = split(address,no_empty:=true)
   string street, house
   integer h = 0
   if length(parts)>1 then
       string last = parts[$]
       if isDigit(last[1]) then
           h = 1
           string penult = parts[$-1]
           if length(parts)>2
           and isDigit(penult[1])
           and match("194",penult)!=1 then
               h = 2
           end if
       elsif length(parts)>2 then
           h = 2
       end if
   end if
   if h then
       street = join(parts[1..$-h])
       house = join(parts[$-h+1..$])
   else
       street = join(parts)
       house = "(none)"
   end if
   string colour = iff(mod(i,2)=0?"#d7fffe":"#9dbcd4")
   return {colour,address,street,house}

end function

constant html_hdr = """ <html>

<head>
<title>Rosetta Code - Start a Web Browser</title>
<meta charset="UTF-8">
</head>
<body bgcolor="#d8dcd6">

Split the house number from the street name

""",

        html_line = """

""",

        html_ftr = """
AddressStreetHouse Number
%s%s%s

</body>

</html> """

procedure main()

   integer fn = open("test.html","w")
   printf(fn,html_hdr)
   for i=1 to length(addresses) do
       printf(fn,html_line,separateHouseNumber(i))
   end for
   printf(fn,html_ftr)
   close(fn)
   system("test.html")

end procedure main()</lang> output as perl

Racket

<lang racket>

  1. lang at-exp racket

... same code as "Separate_the_house_number_from_the_street_name" ...

(require net/sendurl scribble/html)

(define (render-table)

 (for/list ([str (in-list (string-split adressen #rx" *\r?\n *"))]
            [i   (in-naturals)])
   (tr bgcolor: (if (even? i) "#fcf" "#cff")
       (td str)
       (map td (cond [(splits-adressen str) => cdr] [else '(??? ???)])))))

@(compose1 send-url/contents xml->string){

 @html{@head{@title{Splitting Results}}
       @body{@h1{Splitting Results}
             @table{@render-table}}}

} </lang>

Scala

Uses nothing but the Standard Library: <lang scala>import java.awt.Desktop import java.io.{IOException, PrintWriter} import java.net.{URI, ServerSocket} import scala.xml.Elem

class WebServer(port: Int, soleDocument: Elem) extends Thread {

 this.setName(s"Server at $port")
 override def run() {
   val listener = try {
     new ServerSocket(port)
   } catch {
     case e: java.net.BindException => throw new IllegalStateException(s"Port $port already taken!")
   }
   println(s"Listening on port ${listener.getLocalPort}")
   while (!Thread.interrupted()) {
     try {
       //print(".")
       val socket = listener.accept
       new PrintWriter(socket.getOutputStream, true).println(soleDocument)
       socket.close()
     } catch {
       case ioe: IOException => println(ioe)
     }
   }
 }

} // class WebServer

object HtmlServer extends App {

 val PORT = 64507
 // Main
 val thread = new WebServer(PORT, HtmlBuilder)
 val uri = URI.create(s"http://localhost:$PORT/")
 thread.start()
 def HtmlBuilder: Elem = {
   def adressen: Iterator[String] =
     """Plataanstraat 5
       |Straat 12
       |Straat 12 II
       |Straat 1940 II
       |Dr. J. Straat   40
       |Dr. J. Straat 12 a
       |Dr. J. Straat 12-14
       |Laan 1940 – 1945 37
       |Plein 1940 2
       |1213-laan 11
       |16 april 1944 Pad 1
       |1e Kruisweg 36
       |Laan 1940-’45 66
       |Laan ’40-’45
       |Langeloërduinen 3 46
       |Marienwaerdt 2e Dreef 2
       |Provincialeweg N205 1
       |Rivium 2e Straat 59.
       |Nieuwe gracht 20rd
       |Nieuwe gracht 20rd 2
       |Nieuwe gracht 20zw /2
       |Nieuwe gracht 20zw/3
       |Nieuwe gracht 20 zw/4
       |Bahnhofstr. 4
       |Wertstr. 10
       |Lindenhof 1
       |Nordesch 20
       |Weilstr. 6
       |Harthauer Weg 2
       |Mainaustr. 49
       |August-Horch-Str. 3
       |Marktplatz 31
       |Schmidener Weg 3
       |Karl-Weysser-Str. 6""".stripMargin.lines
   def getSplittedAddresses(addresses: Iterator[String]) = {
     val extractor = new scala.util.matching.Regex( """(\s\d+[-/]\d+)|(\s(?!1940|1945)\d+[a-zI. /]*\d*)$|\d+\['][40|45]$""")


     def splitsAdres(input: String): (String, String) =
       (extractor.split(input).mkString, extractor.findFirstIn(input).getOrElse(""))
     addresses.map(org => {
       val temp = splitsAdres(org)
       List(org, temp._1, temp._2)
     })
   }
   def generateTable: Elem = {
     def coloring(rownum: Any): String = {
       rownum match {
         case Nil => "#9bbb59"
         case n: Int => if (n % 2 == 0) "#ebf1de" else "#d8e4bc"
       }
     }
{(List(List("Given Address", "Street", "House Number")) ++ getSplittedAddresses(adressen)). zipWithIndex.map { case (row, rownum) => (if (rownum == 0) Nil else rownum) +: row}.map(row => {row.map(cell => if (row.head == Nil) else )} )}
             {cell}
             {cell}
   } // def generateTable
   <html>
     <head>
       <title>Rosetta.org Task solution</title>
     </head>
     <body lang="en-US" bgcolor="#e6e6ff" dir="LTR">

Split the house number from the street name

{generateTable}

     </body>
   </html>
 } // def content
 if (Desktop.isDesktopSupported && Desktop.getDesktop.isSupported(Desktop.Action.BROWSE))
   Desktop.getDesktop.browse(uri)
 else println(s"Automatic start of Web browser not possible.\nWeb browser must be started manually, use $uri.")
 if (!thread.isAlive) sys.exit(-1)
 println("Web server started.")
 do print("Do you want to shutdown this server? <Y(es)/N>: ") while (!scala.io.StdIn.readBoolean)
 sys.exit()

}</lang>

Output:

Split the house number from the street name

Given AddressStreetHouse Number
1Plataanstraat 5Plataanstraat5
2Straat 12Straat12
3Straat 12 IIStraat12 II
4Straat 1940 IIStraat 1940 II
5Dr. J. Straat40Dr. J. Straat 40
6Dr. J. Straat 12 aDr. J. Straat12 a
7Dr. J. Straat 12-14Dr. J. Straat12-14
8Laan 1940 – 1945 37Laan 1940 – 194537
9Plein 1940 2Plein 19402
101213-laan 111213-laan11
1116 april 1944 Pad 116 april 1944 Pad1
121e Kruisweg 361e Kruisweg36
13Laan 1940-’45 66Laan 1940-’4566
14Laan ’40-’45Laan ’40-’45
15Langeloërduinen 3 46Langeloërduinen3 46
16Marienwaerdt 2e Dreef 2Marienwaerdt 2e Dreef2
17Provincialeweg N205 1Provincialeweg N2051
18Rivium 2e Straat 59.Rivium 2e Straat59.
19Nieuwe gracht 20rdNieuwe gracht20rd
20Nieuwe gracht 20rd 2Nieuwe gracht20rd 2
21Nieuwe gracht 20zw /2Nieuwe gracht20zw /2
22Nieuwe gracht 20zw/3Nieuwe gracht20zw/3
23Nieuwe gracht 20 zw/4Nieuwe gracht20 zw/4
24Bahnhofstr. 4Bahnhofstr.4
25Wertstr. 10Wertstr.10
26Lindenhof 1Lindenhof1
27Nordesch 20Nordesch20
28Weilstr. 6Weilstr.6
29Harthauer Weg 2Harthauer Weg2
30Mainaustr. 49Mainaustr.49
31August-Horch-Str. 3August-Horch-Str.3
32Marktplatz 31Marktplatz31
33Schmidener Weg 3Schmidener Weg3
34Karl-Weysser-Str. 6Karl-Weysser-Str.6

Tcl

Works with: Tcl version 8.6

<lang tcl>package require Tcl 8.6

  1. This is identical to the address task. Skip forward to the next section...

proc split_DE_NL_address {streetAddress} {

   set RE {(?x)

^ (.*?) ( (?:\s \d+ [-/] \d+) | (?:\s (?!1940|1945)\d+ [a-zI. /]* \d*) )? $

   }
   regexp $RE $streetAddress -> str num
   return [list [string trim $str] [string trim $num]]

}

set data {

   Plataanstraat 5
   Straat 12
   Straat 12 II
   Dr. J. Straat   12
   Dr. J. Straat 12 a
   Dr. J. Straat 12-14
   Laan 1940 – 1945 37
   Plein 1940 2
   1213-laan 11
   16 april 1944 Pad 1
   1e Kruisweg 36
   Laan 1940-’45 66
   Laan ’40-’45
   Langeloërduinen 3 46
   Marienwaerdt 2e Dreef 2
   Provincialeweg N205 1
   Rivium 2e Straat 59.
   Nieuwe gracht 20rd
   Nieuwe gracht 20rd 2
   Nieuwe gracht 20zw /2
   Nieuwe gracht 20zw/3
   Nieuwe gracht 20 zw/4
   Bahnhofstr. 4
   Wertstr. 10
   Lindenhof 1
   Nordesch 20
   Weilstr. 6
   Harthauer Weg 2
   Mainaustr. 49
   August-Horch-Str. 3
   Marktplatz 31
   Schmidener Weg 3
   Karl-Weysser-Str. 6

}

  1. Construct the HTML to show

set html "<html><head><meta charset=\"UTF-8\"> <title>split_DE_NL_address</title></head><body>

"

foreach streetAddress [split $data "\n"] {

   set streetAddress [string trim $streetAddress]
   if {$streetAddress eq ""} continue
   lassign [split_DE_NL_address $streetAddress] str num
append html ""

}

append html "
AddressStreetNumber
$streetAddress$str$num

</body></html>"

  1. Pick a unique filename with .html extension (important!)

set f [file tempfile filename street.html] fconfigure $f -encoding utf-8 puts $f $html close $f

          1. THE WEB BROWSER LAUNCH CODE MAGIC #####
  1. Relies on the default registration of browsers for .html files
  2. This is all very platform specific; Android requires another incantation again

if {$tcl_platform(platform) eq "windows"} {

   exec {*}[auto_execok start] "" [file nativename $filename]

} elseif {$tcl_platform(os) eq "Darwin"} {

   exec open $filename

} else {

   exec xdg_open $filename

}</lang>

Output:
AddressStreetNumber
Plataanstraat 5Plataanstraat5
Straat 12Straat12
Straat 12 IIStraat12 II
Dr. J. Straat 12Dr. J. Straat12
Dr. J. Straat 12 aDr. J. Straat12 a
Dr. J. Straat 12-14Dr. J. Straat12-14
Laan 1940 – 1945 37Laan 1940 – 194537
Plein 1940 2Plein 19402
1213-laan 111213-laan11
16 april 1944 Pad 116 april 1944 Pad1
1e Kruisweg 361e Kruisweg36
Laan 1940-’45 66Laan 1940-’4566
Laan ’40-’45Laan ’40-’45
Langeloërduinen 3 46Langeloërduinen3 46
Marienwaerdt 2e Dreef 2Marienwaerdt 2e Dreef2
Provincialeweg N205 1Provincialeweg N2051
Rivium 2e Straat 59.Rivium 2e Straat59.
Nieuwe gracht 20rdNieuwe gracht20rd
Nieuwe gracht 20rd 2Nieuwe gracht20rd 2
Nieuwe gracht 20zw /2Nieuwe gracht20zw /2
Nieuwe gracht 20zw/3Nieuwe gracht20zw/3
Nieuwe gracht 20 zw/4Nieuwe gracht20 zw/4
Bahnhofstr. 4Bahnhofstr.4
Wertstr. 10Wertstr.10
Lindenhof 1Lindenhof1
Nordesch 20Nordesch20
Weilstr. 6Weilstr.6
Harthauer Weg 2Harthauer Weg2
Mainaustr. 49Mainaustr.49
August-Horch-Str. 3August-Horch-Str.3
Marktplatz 31Marktplatz31
Schmidener Weg 3Schmidener Weg3
Karl-Weysser-Str. 6Karl-Weysser-Str.6