GithubHelp home page GithubHelp logo

Comments (9)

jchannon avatar jchannon commented on September 26, 2024

Time to get @Yantrio mystery magical regex machine out ;)

from csharpextensions.

jchannon avatar jchannon commented on September 26, 2024

I have this regex which works in a debugger but blows up in node for some reason. Won't have any time to fix today 😢

> '/Users/jc/projects/nancy/src/fred/poo/'.replace(new RegExp('\/|\\', 'g'), '.');
SyntaxError: Invalid regular expression: //|\/: \ at end of pattern

from csharpextensions.

jchannon avatar jchannon commented on September 26, 2024

I think I have it

'asd\\asd\\asd\\asd'.replace(new RegExp('\/|\\\\', 'g'), '.');

'/Users/jc/projects/nancy/src/fred/poo/'.replace(new RegExp('\/|\\\\', 'g'), '.');

from csharpextensions.

jchannon avatar jchannon commented on September 26, 2024

Bugger fails on windows

from csharpextensions.

shrayasr avatar shrayasr commented on September 26, 2024
SUCH REGEX 
    MUCH PLATFORMS
  VERY VARIATIONS
AMAZE

😞

from csharpextensions.

shrayasr avatar shrayasr commented on September 26, 2024

Looking into this, I also realize that this isn't the least of our problems under Windows.

We also have this line:

var newroot = parentdir.substr(parentdir.lastIndexOf('/') + 1);

In my case, I have parentdir set to "c:\\Users\\shrayasr\\work\\code\\ixm\\src\\ixm". Now consider a unix env, parentdir would be /users/shrayasr/work/code/ixm/src/ixm. newroot is set differently on both platforms because of the char we use to substring

REPL output:

> var parentdir = "/users/shrayasr/work/code/ixm/src/ixm"
> var newroot = parentdir.substr(parentdir.lastIndexOf('/') + 1);
> newroot
'ixm'
> var parentdir = "c:\\Users\\shrayasr\\work\\code\\ixm\\src\\ixm"
> var newroot = parentdir.substr(parentdir.lastIndexOf('/') + 1);
> newroot
'c:\\Users\\shrayasr\\work\\code\\ixm\\src\\ixm'

with newroot being set this way, it doesn't matter if we fix anything below it, the namespace will not be right. Manually continuing leaves me with this namespace:

"c:.Users.shrayasr.work.code.ixm.src.ixm.Controllers"

hehe. Thoughts?

from csharpextensions.

jchannon avatar jchannon commented on September 26, 2024

yeah i spotted that too :)

from csharpextensions.

shrayasr avatar shrayasr commented on September 26, 2024

Taken an initial whack in the PR. Do give it a glance. Works for me now 👍

from csharpextensions.

jchannon avatar jchannon commented on September 26, 2024

Closed via #5

from csharpextensions.

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.