in reply to (tye)Re: Can't find unicode character property definition via main-e or e.pl at unicode/Is/e.pl line 0
in thread Can't find unicode character property definition via main-e or e.pl at unicode/Is/e.pl line 0

Thank you, tye, for the insight and advice.

I met this problem recently while working on the original version of this script, from the module Pod-Tree-1.06. Path strings containing '\' were passed to the script as arguments by the user (me), and the script hit the error while doing the substitution
$dir =~ s/^$PodDir/$HTMLDir/o;
I did not understand the problem at the time, but I found that I could fix it by inserting
# fix up the Win32 paths $PodDir =~ s( \\ )(/)gx; $HTMLDir =~ s( \\ )(/)gx;
Now you explained the nature of the problem and showed two ways to make similar scripts more robust: Rudif

  • Comment on Re: (tye)Re: Can't find unicode character property definition via main-e or e.pl at unicode/Is/e.pl line 0
  • Select or Download Code