in reply to search and replace these unique characters
Once you identify the characters, it will be easier to figure out a way of eliminating them.#!/usr/bin/env perl use warnings; use strict; my $str = 'abcde'; for (split //, $str) { print "$_:", ord $_, ":\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: search and replace these unique characters
by graff (Chancellor) on Dec 05, 2007 at 03:05 UTC |