str_replace in Perl

Sollte man sich als Perl anfänger schon einmal die Frage gestellt haben ob es denn kein str_replace in Perl gibt, hier die einfache Antwort: NEIN

In Perl werden solche Konstrukte mit regulären Ausdrücken verarbeitet.
Als Beispiel:
Der Ausdruck :
$variable_name = str_replace ("Hello", "World", $variable_name);

würde in Perl wie folgt geschrieben:
$variable_name =~ s/Hello/World/g;

Gefunden habe ich das ganze hier:
http://lists.evolt.org/archive/Week-of-Mon-20040216/155807.html

Linux auf dem Fujitsu Siemens Stylistic 5011 – Der Stift

Um den Stift des ST5011 unter Linux zu verwenden muss man folgende Erweiterungen an der xorg.conf durchführen:

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/input/wacom"
  Option        "Type"          "cursor"
  Option        "Mode"          "relative"
  Option        "ForceDevice"   "ISDV4"
EndSection

Section "ServerLayout"
  InputDevice   "cursor"        "SendCoreEvents" # Add this line
  InputDevice   "stylus"        "SendCoreEvents" # Add this line
  InputDevice   "eraser"        "SendCoreEvents" # Add this line
EndSection