Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8947401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:45:03+00:00 2026-06-15T12:45:03+00:00

Basically, like if you were to say var string = ‘he said Hello World’;

  • 0

Basically, like if you were to say

var string = 'he said "Hello World"';
var splitted = string.split(" ");

the splitted array would be:

'he' 'said' '"Hello World"'

basically treating the quotation mark’d portion as a separate item

So how would I do this in javascript? Would I have to have a for loop that goes over the string checking if the scanner is inside a set of quotation marks? Or is there a simpler way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T12:45:05+00:00Added an answer on June 15, 2026 at 12:45 pm

    You could use regular expressions:

    var splitted = string.match(/(".*?")|(\S+)/g);
    

    Basically it searches at first for strings with any characters between quotes (including spaces), and then all the remaining words in the string.

    For example

    var string = '"This is" not a string "without" "quotes in it"';
    string.match(/(".*?")|(\S+)/g);

    Returns this to the console:

    [""This is"", "not", "a", "string", ""without"", ""quotes in it""]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a custom data type which basically behaves like an
I would like to query data given an array to filter by via WCF
Say I have a User model in JavaScript that looks something like this: var
For example, say I have: public var usersOnlineArray:Array = new Array(bob,jim,tim,marry,luke); and when I
Say you have a class like this: class MyClass: def __init__(self, var1): self.var =
I would like to get a position of a structure/record. Say I have this
I know I can init an array of JS objects like this: var things
Let's say I have an array that looks like this: $array[0] = 'House'; $array[1]
so basically like the title says is there a way to use NSSortDescriptor to
With tables basically like this: Elements id INT PRIMARY KEY ... Observations id INT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.