Coder Social home page Coder Social logo

Comments (4)

threedaymonk avatar threedaymonk commented on July 17, 2024 1

@batter You can probably do it using something like this (not tested on 1.8.7, but works on 2.1 and doesn't use any post-1.8 features as far as I know):

s.unpack("U*").map { |c| c > 0x7F ? "&##{c};" : [c].pack("c") }.join("")

from htmlentities.

threedaymonk avatar threedaymonk commented on July 17, 2024

It can't do it. That's a bit of an ill-defined problem, though. The good news is that if you're doing what I think you're doing, there may be a very simple solution.

If you just want to make your HTML ASCII-safe, by encoding everything above 0x7F, that's really easy (in Ruby 1.9):

s = "<em>日本語</em>"
s.gsub(/\P{ASCII}/){ "&##{$&.unpack('U').first};" }
# => "<em>&#26085;&#26412;&#35486;</em>"

from htmlentities.

batter avatar batter commented on July 17, 2024

@threedaymonk - Nice gem. Sorry for asking, but do you know if there's a way to accomplish the same thing you did with your code sample above in Ruby 1.8.7? The Regexp class doesn't have all the nice character classes and properties in 1.8.7 like 1.9 does.

We have an application currently stuck on Ruby18 and we're working towards moving it to Ruby19 or higher but in the meantime I'm trying to determine what the ideal solution for encoding characters (but omitting HTML tags) is, and finding it difficult to work with encoded characters as a whole when compared to using Ruby19+. Any advice would be appreciated!

from htmlentities.

batter avatar batter commented on July 17, 2024

@threedaymonk - Thanks a bunch! I'm going to do some more extensive testing but that seems to do the trick and it isn't raising any errors on 1.8.7. Any tips or pointers on documentation I can read to try to become a little more well versed with working with encodings in Ruby?

from htmlentities.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.