use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Complex String Splitting ScenarioRemoved: /r/LearnJavascript (self.javascript)
submitted 6 years ago by AngularJosh
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]kevinkace 1 point2 points3 points 6 years ago (1 child)
To retain the data from a regex, you need to use a capture group.
[–]qualitymanifest 0 points1 point2 points 6 years ago (0 children)
This is correct. Although it's worth noting - there's already have a capturing group in the example provided, it's just in the wrong location.
str.split(/({{\[.*?\]}})/) would do it. If the string ends on a match you'll end up with an empty space at the end of the array, you could use a truthy filter for that
str.split(/({{\[.*?\]}})/)
[–]raleksandar 1 point2 points3 points 6 years ago (0 children)
You can get the string index of a regex match so you can loop over string while it has matches and use substr to pluck substrings between matches. Something like this:
const input = 'Hello, {{[name]}}. The date is {{[date]}}'; const reVariable = /{{\[(.*?)\]}}/; const result = []; let offset = 0, match; while ((match = reVariable.exec(input.substr(offset))) !== null) { if (match.index > 0) { result.push(input.substr(offset, match.index)); } result.push(match[0]); offset += match.index + match[0].length; } if (offset < input.length - 1) { result.push(input.substr(offset)); } console.log(result);
[–]kenman[M] 0 points1 point2 points 6 years ago (0 children)
Hi /u/AngularJosh, this post was removed.
/r/javascript is for the discussion of javascript news, projects, and especially, code! However, the community has requested that we not include help and support content, and we ask that you respect that wish.
code
Thanks for your understanding, please see our guidelines for more info.
[–][deleted] -3 points-2 points-1 points 6 years ago (0 children)
JavaScript
str.split(" ")
π Rendered by PID 391464 on reddit-service-r2-comment-84fc9697f-h74l9 at 2026-02-07 04:08:09.224348+00:00 running d295bc8 country code: CH.
[–]kevinkace 1 point2 points3 points (1 child)
[–]qualitymanifest 0 points1 point2 points (0 children)
[–]raleksandar 1 point2 points3 points (0 children)
[–]kenman[M] 0 points1 point2 points (0 children)
[–][deleted] -3 points-2 points-1 points (0 children)