Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^3: replace &

by sandy1028 (Sexton)
on Jun 04, 2009 at 07:42 UTC ( #768329=note: print w/replies, xml ) Need Help??


in reply to Re^2: replace &
in thread replace &

How to check whether the string is a HTML entity in perl? Can any one tell me

Replies are listed 'Best First'.
Re^4: replace &
by Corion (Patriarch) on Jun 04, 2009 at 07:46 UTC

    If a string and the HTML::Entities-decoded result of the string are the same, it is no HTML entity.

      #!/usr/bin/perl; use HTML::Entities; $to_decode = "TEST&TEST;A&E&an HTML--- string - <© T +VS>"; $encoded = encode_entities($to_decode); print "Encoded data --> $encoded\n\n\n";
      The output is Encoded data --> TEST&TEST;A&E&an HTML--- string - <© TVS> Here all the & is replaced with &. If it is a HTML entity it should not encode the string for ex:   Here it displays as   it should be   only

        I don't understand what your reply has to do with the original question of finding out whether a string is an HTML entity and my reply on how to detect whether a string is an HTML entity.

Re^4: replace &
by ig (Vicar) on Jun 04, 2009 at 10:03 UTC

    To determine whether a string contains an HTML entity, you will be concerned with some information that may not be available by inspecting the string contents: the version of HTML, the character set of the HTML document, the character encoding of the string and possibly even the transfer encoding.

    This information might be available from the context in which you obtained the string. For example, if you received it from a web server via HTTP protocol, these attributes might have been specified in the HTTP protocol headers. If not, you may have to make some assumptions, which may or may not be correct. If you make incorrect assumptions, you results may not be satisfactory.

    For example, the World Wide Web Consortium publishes a full list of character references for HTML 4.01.

    Interpreting HTML documents is complicated by the fact that the character encoding can be specified for some elements in an HTML document, at least with HTML 4.01, so you may have to deal with multiple encodings within the same document. Also, the HTML 4.01 specification has this rather cryptic statement: Character references within comments have no special meaning; they are comment data only. So you might also be concerned when checking your string, to know whether it includes or is from the context of a comment.

    Your task may be further complicated by the need to deal with documents which were written to be consistent with some version of some popular browser rather than with any of the HTML or other specifications.

    All these difficulties aside, if you assume an HTML version and character encoding then you can search for any of the character entities defined in the HTML specification.

    Based on the information you have provided thus far, I would say that the solution provided by wspf is a good start and you should use it until you have some particular case for which it does not work.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://768329]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2023-10-01 05:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?