Coder Social home page Coder Social logo

Comments (4)

mathiasbynens avatar mathiasbynens commented on May 20, 2024

https://gist.github.com/WebReflection/6225242 by @WebReflection might be of use.
For jsesc, the problem is I need to remove any escape sequences from the re.source before I can go ahead and escape everything as needed — but special escape sequences for regular expressions (such as \d etc.) must be preserved.

So, is there a clever way to go from /abc©\xA9/g to /abc©©/g without manually parsing every possible escape sequence?

from jsesc.

WebReflection avatar WebReflection commented on May 20, 2024
var re = /abc©\xA9/g;
alert(
  JSON.stringify(re.source).replace(
    /\\\\(x[a-zA-Z0-9]{2}|u[a-zA-Z0-9]{4})/g,
    function(m, c){
      return String.fromCharCode(parseInt(c.slice(1), 16));
    }
  )
);
// string abc©©

from jsesc.

michaelficarra avatar michaelficarra commented on May 20, 2024

@WebReflection: Neat idea, but doesn't quite work. Try /abc©\\xA9\xA9/g.

from jsesc.

WebReflection avatar WebReflection commented on May 20, 2024

Mine was a hint... You can improve that with extra checks/changes ;-) I would have pushed a change otherwise

from jsesc.

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.