sdasda7777
sdasda7777
Oh, okay, I think I fixed it for PCRE, but still doesn't work 100% in Notepad++ (last impl in the example code above doesn't work still). Seems content of brackets...
One more thing I realized: the comment expressions are also wrong. The comments above and currently shipped are standard C/C++/Java comments, that work like this: ```c /* comment starts here...
Maybe this might work? ```regex (?x) # x mode (?'RUST_MULTILINE_COMMENT' (?s:\x2F\x2A (?:(?!(?:\x2F\x2A|\x2A\x2F)).)* (?&RUST_MULTILINE_COMMENT)? (?:(?!(?:\x2F\x2A|\x2A\x2F)).)* (?:\x2A\x2F)?) ) | (?m-s:\x2F{2}.*$) # Single Line Comment ``` By the way I think the regex...
Yeah, that looks exactly like what I'm looking for. I'll try, tysm!
I don't know how to reproduce it exactly. However if there is some memory readout or something that I would be able to provide, I can do that, of course.
@estebanlm Could it be happening because I have the repo cloned locally using terminal and added into Iceberg as an "existing clone"? It seems like the initialization of LGitReference is...
So there should be no issue having special characters instead of the number row? I don't particularly care about the Slovak keyboard as I am not and I will not...
Is this issue still happening on the latest version?
Hi, I just noticed when I take [the multigraph example from JSON-LD standard](https://www.w3.org/TR/json-ld11/#data-model) and convert it to N-Quads, main graph is suddenly referenced by a blank label, instead of no...
@namedgraph In what sense is the `` an issue for you? Any N-Quads parser should parse that as data in the default graph, right? I think there was some trick...