Replace special characters by non-special characters

This is a discussion on Replace special characters by non-special characters within the PHP Language forums, part of the PHP Programming Forums category; Andy Hassall wrote: > On Sat, 06 Nov 2004 22:54:00 +0100, Pikkel <pikkel@de.wop> wrote: &...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #11 (permalink)  
Old 11-07-2004
JAS
 
Posts: n/a
Default Re: Replace special characters by non-special characters

Andy Hassall wrote:
> On Sat, 06 Nov 2004 22:54:00 +0100, Pikkel <pikkel@de.wop> wrote:
>
>
>>It's usefull information and I'll remember this. Thank you.
>>It's not the answer on my question wether there is a function which
>>converts characters with accents, umlauts and so on, to characters without.

>
>
> True, it's drifted a bit to answer lawrence's questions.
>
> As far as your question goes - no, there isn't a built in function, you'd have
> to write one. In order to do so, you have to be a lot more specific about the
> character encodings you're using, which characters you want to convert to what,
> and exactly what "and so on" means in your last sentence.
>


I saw a few example of how to do just this on the PHP site in the user
comments. I'm not quite sure but you can bet its on str_replace or
something like that ........
Reply With Quote
  #12 (permalink)  
Old 11-07-2004
Pikkel
 
Posts: n/a
Default Re: Replace special characters by non-special characters

Andy Hassall wrote:

> On Sat, 06 Nov 2004 22:54:00 +0100, Pikkel <pikkel@de.wop> wrote:
>
>
>>It's usefull information and I'll remember this. Thank you.
>>It's not the answer on my question wether there is a function which
>>converts characters with accents, umlauts and so on, to characters without.

>
>
> True, it's drifted a bit to answer lawrence's questions.
>
> As far as your question goes - no, there isn't a built in function, you'd have
> to write one. In order to do so, you have to be a lot more specific about the
> character encodings you're using, which characters you want to convert to what,
> and exactly what "and so on" means in your last sentence.


The pages itselves use ISO-8859-1.
But I can't be sure what's the users input. This input will be used to
name and create pages, menu's, pictures and so on.
Reply With Quote
  #13 (permalink)  
Old 11-07-2004
Andy Hassall
 
Posts: n/a
Default Re: Replace special characters by non-special characters

On Sun, 07 Nov 2004 11:36:31 +0100, Pikkel <pikkel@de.wop> wrote:

>Andy Hassall wrote:
>
>> On Sat, 06 Nov 2004 22:54:00 +0100, Pikkel <pikkel@de.wop> wrote:
>>
>>>It's usefull information and I'll remember this. Thank you.
>>>It's not the answer on my question wether there is a function which
>>>converts characters with accents, umlauts and so on, to characters without.

>>
>> True, it's drifted a bit to answer lawrence's questions.
>>
>> As far as your question goes - no, there isn't a built in function, you'd have
>> to write one. In order to do so, you have to be a lot more specific about the
>> character encodings you're using, which characters you want to convert to what,
>> and exactly what "and so on" means in your last sentence.

>
>The pages itselves use ISO-8859-1.
>But I can't be sure what's the users input. This input will be used to
>name and create pages, menu's, pictures and so on.


Right, well strtr()'s already been pointed out a couple of days ago by Michael
Fesser in this thread, so just write an array of characters you want replaced
and run it through that - ISO-8859-1 isn't big, so you can just spend a couple
of minutes writing out a list of accented characters and what you want them
transformed into.

Looking at the manual page for the function, there's an example of a function
to do this already in the user notes. http://uk.php.net/strtr

--
Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk>
<http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
Reply With Quote
  #14 (permalink)  
Old 11-21-2004
lawrence
 
Posts: n/a
Default Re: Replace special characters by non-special characters

Andy Hassall <andy@andyh.co.uk> wrote in message news:<b0ipo0dtm74agv3thefqtkh0r1f51hn4d5@4ax.com>. ..
> But are you after some more pragmatic approach, something like:
>
> "The data my users send is probably iso8859-1, iso8859-15, codepage 1252, or
> maybe utf-8, but it's likely been copied and mangled between applications so I
> can't reliably tell which. How do I clean this data up in a reasonable way so
> it can be converted to UTF8 for presentation on a UTF8 encoded page?"
>
> If all the data has values <=127 then it's easy - that's all plain ASCII which
> is a common subset of all four character sets.
>
> You can at least rule out UTF-8 by using the functions posted in previous
> threads looking for malformed UTF-8. If there's a significant number of
> characters >127 and it all validates as UTF-8, then the odds of it probably
> being UTF-8 increase the more characters above 127 there are, but it's still
> not certain.
>
> So you've narrowed it down to one of the three single-byte character sets.
>
> Then the major differences are:
>
> Codepage 1252 has printable characters in the range 128-159 (with a couple of
> gaps) wheras the iso8859 encodings only have non-printable characters there. So
> if there's data in this range, odds are it's Codepage 1252 - so you can convert
> it to UTF-8 from there.
>
> This range holds the angled "smart" quotes, and the em-dash, which are the
> characters that cause the most trouble. So alternatively, you could convert
> them to plain quotes and dashes if you wanted.
>
> If there's no characters in that range, then you haven't ruled out 1252, but
> the rest of the encoding is pretty similar between 1252, iso8859-1 and
> iso8859-15
>
> See http://en.wikipedia.org/wiki/ISO_8859-15 for the differences between -1
> and -15, the main character worth worrying about most is the Euro (which is
> somewhere else again in 1252 - in the 128-159 range I believe).


Brilliant stuff. Really educational. Still, I think I'm missing
something basic about how computers read the byte stream and figure
out how many bytes each character will be. Basically, I'm wondering
what a character is. Can you point to a basic comp sci tutorial on the
subject?

And does PHP have any function other than ord() for figuring out what
set of bytes one is dealing with?
Reply With Quote
  #15 (permalink)  
Old 11-21-2004
lawrence
 
Posts: n/a
Default Re: Replace special characters by non-special characters

Andy Hassall <andy@andyh.co.uk> wrote in message news:<b0ipo0dtm74agv3thefqtkh0r1f51hn4d5@4ax.com>. ..
> On 6 Nov 2004 01:19:52 -0800, lkrubner@geocities.com (lawrence) wrote:
> But are you after some more pragmatic approach, something like:
>
> "The data my users send is probably iso8859-1, iso8859-15, codepage 1252, or
> maybe utf-8, but it's likely been copied and mangled between applications so I
> can't reliably tell which. How do I clean this data up in a reasonable way so
> it can be converted to UTF8 for presentation on a UTF8 encoded page?"
>
> If all the data has values <=127 then it's easy - that's all plain ASCII which
> is a common subset of all four character sets.
>
> You can at least rule out UTF-8 by using the functions posted in previous
> threads looking for malformed UTF-8. If there's a significant number of
> characters >127 and it all validates as UTF-8, then the odds of it probably
> being UTF-8 increase the more characters above 127 there are, but it's still
> not certain.


Thinking about the pragmatics, and since I'm under considerable
pressure, I'm thinking that I might try something quick and simple and
then come back to this problem next year and deal with it more
gracefully. As near as I can see, just 6 characters are causing me
trouble:

smart quotes - both left and right
single quotes, still smart
hypens, especially em dashes and en dashes formated in word processors

I've looked at the wikipedia page here:

http://en.wikipedia.org/wiki/Windows-1251

It says that Windows-1251 encodes a smart quote as 9xx3. Not sure what
the x's are for. But couldn't I just loop through submitted text using
ord() to find this byte order, and then when I find it, replace it
with something ASCII?

6 or 7 or 8 tricky items in the top 3 or 4 encodings in use on the web
- a function to find them using ord() and replace them with ASCII -
that sounds like something I can do within the time constraints I
face. As much as I hope to educate myself further on the subject of
character encodings, I'm not going to be able to learn as much as I
like within the time limits I face.
Reply With Quote
  #16 (permalink)  
Old 11-24-2004
Andy Hassall
 
Posts: n/a
Default Re: Replace special characters by non-special characters

On 21 Nov 2004 11:09:43 -0800, lkrubner@geocities.com (lawrence) wrote:

>Andy Hassall <andy@andyh.co.uk> wrote in message news:<b0ipo0dtm74agv3thefqtkh0r1f51hn4d5@4ax.com>. ..
>
>Brilliant stuff. Really educational. Still, I think I'm missing
>something basic about how computers read the byte stream and figure
>out how many bytes each character will be. Basically, I'm wondering
>what a character is. Can you point to a basic comp sci tutorial on the
>subject?


Haven't got a particular source handy, I'm afraid. What I know of multiple
character sets came from learning about it to deal with multibyte-enablement
(specifically UTF8) of the product from my day job, which was on Oracle
databases. And then the final block with regards to HTML fell into place thanks
to a post [1] from John Dunlop, a regular poster here, who pointed out that
HTML's document character set is Unicode, and it finally clicked for me what
that really implies.

>And does PHP have any function other than ord() for figuring out what
>set of bytes one is dealing with?


Given that PHP assumes all strings are single-byte, and doesn't even pretend
to know about character set encodings, you don't need another function. ord()
knows only about bytes; it knows nothing of characters.

The documentation for ord() is wrong. It claims it "Returns the ASCII value of
the first character of string". Yet it works for byte values past 127; none of
these are ASCII. If I get a chance I may submit a doc bug; the PHP maintainers
responded impressively quickly to one I raised about imagettftext a few days
ago.

[1]
http://groups.google.com/groups?selm...&output=gplain

--
Andy Hassall / <andy@andyh.co.uk> / <http://www.andyh.co.uk>
<http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
Reply With Quote
  #17 (permalink)  
Old 12-01-2004
lawrence
 
Posts: n/a
Default Re: Replace special characters by non-special characters

Andy Hassall <andy@andyh.co.uk> wrote in message
> >And does PHP have any function other than ord() for figuring out what
> >set of bytes one is dealing with?

>
> Given that PHP assumes all strings are single-byte, and doesn't even pretend
> to know about character set encodings, you don't need another function. ord()
> knows only about bytes; it knows nothing of characters.
>
> The documentation for ord() is wrong. It claims it "Returns the ASCII value of
> the first character of string". Yet it works for byte values past 127; none of
> these are ASCII. If I get a chance I may submit a doc bug; the PHP maintainers
> responded impressively quickly to one I raised about imagettftext a few days
> ago.


Does that mean that ord() steps through a string one byte at a time,
and it is up to the programmer (me) to figure out if the byte is
character by itself, or party of a multi-byte character?

I may use ord() then to look for the multi-byte characters that are
causing me grief, and remove them.

I've found another likely cause of my grief. I've been hitting all
input with this:


>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

http://in2.php.net/manual/en/function.utf8-encode.php
utf8_encode -- Encodes an ISO-8859-1 string to UTF-8
This function encodes the string data to UTF-8, and returns the
encoded version. UTF-8 is a standard mechanism used by Unicode for
encoding wide character values into a byte stream. UTF-8 is
transparent to plain ASCII characters, is self-synchronized (meaning
it is possible for a program to figure out where in the bytestream
characters start) and can be used with normal string comparison
functions for sorting and such. PHP encodes UTF-8 characters in up to
four bytes, like this:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


But if I copy and paste a string from another site, and then input
it, and that string is not ISO-8859-1, then I'll get garbage
characters?
Reply With Quote
  #18 (permalink)  
Old 12-02-2004
lkrubner@geocities.com
 
Posts: n/a
Default Re: Replace special characters by non-special characters


Andy Hassall wrote:
> On 21 Nov 2004 11:09:43 -0800, lkrubner@geocities.com (lawrence)

wrote:
> >And does PHP have any function other than ord() for figuring out

what
> >set of bytes one is dealing with?

>
> Given that PHP assumes all strings are single-byte, and doesn't even

pretend
> to know about character set encodings, you don't need another

function. ord()
> knows only about bytes; it knows nothing of characters.
>
> The documentation for ord() is wrong. It claims it "Returns the

ASCII value of
> the first character of string". Yet it works for byte values past

127; none of
> these are ASCII.


Actually, this remark of yours was very useful to me. I feel like I'm
getting bytes and character encoding for the first time. Essentially,
walking through a big string when you don't know the character encoding
is like feeling your way through a pitch black tunnel - you've no idea
what you're running into. Using ord() is like going down that tunnel
with a very weak flashlight - you get to see one item at a time, but
you don't know if that item is actually connected to larger items (you
don't know if this byte you've got in your hand is a single byte
character or part of multi-byte character). Like an archeologist,
you've got to read the thing in your hands for clues to see if maybe it
is really part of something larger - so you look to see if it starts
with a 0 or has a top bit set, or see if the numbers on it are in a
certain range. This info gives you some clues about whether what you've
got is a standalone object (a single byte character) or part of
something larger.

So if I wanted to do something like track down Microsoft Word smart
quotes, I'd go through a string one byte at a time, looking for a
particular sequence of bytes that would be tell-tale.

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 08:09 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0