41

引用符式内のスペースを無視して、javascript の文字列をスペース (" ") で分割する方法を教えてください。

私はこの文字列を持っています:

var str = 'Time:"Last 7 Days" Time:"Last 30 Days"';

文字列が 2 つに分割されることを期待します。

['Time:"Last 7 Days"', 'Time:"Last 30 Days"']

しかし、私のコードは4つに分割されます:

['Time:', '"Last 7 Days"', 'Time:', '"Last 30 Days"']

これは私のコードです:

str.match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);

ありがとう!

4

3 に答える 3

85
s = 'Time:"Last 7 Days" Time:"Last 30 Days"'
s.match(/(?:[^\s"]+|"[^"]*")+/g) 

// -> ['Time:"Last 7 Days"', 'Time:"Last 30 Days"']

説明:

(?:         # non-capturing group
  [^\s"]+   # anything that's not a space or a double-quote
  |         #   or…
  "         # opening double-quote
    [^"]*   # …followed by zero or more chacacters that are not a double-quote
  "         # …closing double-quote
)+          # each match is one or more of the things described in the group

元の式を修正する+には、グループに a を追加するだけです。

str.match(/(".*?"|[^"\s]+)+(?=\s*|\s*$)/g)
#                         ^ here.
于 2013-04-28T09:56:29.077 に答える
4

以下をサポートする ES6 ソリューション:

  • 引用符内を除いてスペースで分割
  • 引用符を削除しますが、バックスラッシュでエスケープされた引用符は削除しません
  • エスケープされた引用が引用になる

コード:

str.match(/\\?.|^$/g).reduce((p, c) => {
        if(c === '"'){
            p.quote ^= 1;
        }else if(!p.quote && c === ' '){
            p.a.push('');
        }else{
            p.a[p.a.length-1] += c.replace(/\\(.)/,"$1");
        }
        return  p;
    }, {a: ['']}).a

出力:

[ 'Time:Last 7 Days', 'Time:Last 30 Days' ]
于 2017-10-26T05:33:14.093 に答える