Yahoo Italia Ricerca nel Web

Risultati di ricerca

  1. String.split() can also accept a regular expression: input.split(/[ ,]+/); This particular regex splits on a sequence of one or more commas or spaces, so that e.g. multiple consecutive spaces or a comma+space sequence do not produce empty elements in the results.

  2. The split() method splits a string into an array of substrings. The split() method returns the new array. The split() method does not change the original string. If (" ") is used as separator, the string is split between words.

    • Overview
    • Syntax
    • Description
    • Examples
    • Browser compatibility
    • See also

    The split() method of String values takes a pattern and divides this string into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.

    Parameters

    separator The pattern describing where each split should occur. Can be undefined, a string, or an object with a Symbol.split method — the typical example being a regular expression. Omitting separator or passing undefined causes split() to return an array with the calling string as a single element. All values that are not undefined or objects with a @@split method are coerced to strings. limit Optional A non-negative integer specifying a limit on the number of substrings to be included in the array. If provided, splits the string at each occurrence of the specified separator, but stops when limit entries have been placed in the array. Any leftover text is not included in the array at all. •The array may contain fewer entries than limit if the end of the string is reached before the limit is reached. •If limit is 0, [] is returned.

    Return value

    An Array of strings, split at each point where the separator occurs in the given string.

    If separator is a non-empty string, the target string is split by all matches of the separator without including separator in the results. For example, a string containing tab separated values (TSV) could be parsed by passing a tab character as the separator, like myString.split("\t"). If separator contains multiple characters, that entire character sequence must be found in order to split. If separator appears at the beginning (or end) of the string, it still has the effect of splitting, resulting in an empty (i.e. zero length) string appearing at the first (or last) position of the returned array. If separator does not occur in str, the returned array contains one element consisting of the entire string.

    If separator is an empty string (""), str is converted to an array of each of its UTF-16 "characters", without empty strings on either ends of the resulting string.

    If separator is a regexp that matches empty strings, whether the match is split by UTF-16 code units or Unicode code points depends on if the regex is Unicode-aware.

    If separator is a regular expression with capturing groups, then each time separator matches, the captured groups (including any undefined results) are spliced into the output array. This behavior is specified by the regexp's Symbol.split method.

    If separator is an object with a Symbol.split method, that method is called with the target string and limit as arguments, and this set to the object. Its return value becomes the return value of split.

    Any other value will be coerced to a string before being used as separator.

    Using split()

    When the string is empty and a non-empty separator is specified, split() returns [""]. If the string and separator are both empty strings, an empty array is returned. The following example defines a function that splits a string into an array of strings using separator. After splitting the string, the function logs messages indicating the original string (before the split), the separator used, the number of elements in the array, and the individual array elements. This example produces the following output:

    Removing spaces from a string

    In the following example, split() looks for zero or more spaces, followed by a semicolon, followed by zero or more spaces—and, when found, removes the spaces and the semicolon from the string. nameList is the array returned as a result of split(). This logs two lines; the first line logs the original string, and the second line logs the resulting array.

    Returning a limited number of splits

    In the following example, split() looks for spaces in a string and returns the first 3 splits that it finds.

    BCD tables only load in the browser with JavaScript enabled. Enable JavaScript to view data.

    •Polyfill of String.prototype.split in core-js with fixes and implementation of modern behavior like Symbol.split support

    •String.prototype.charAt()

    •String.prototype.indexOf()

    •String.prototype.lastIndexOf()

    •Array.prototype.join()

    •Regular expressions guide

  3. 4 mar 2024 · Use the split() method to split the string on each space. Use the join() method to join the array into a string. Use the split() method to split the string and keep the whitespace.

  4. The following example uses the split() method to divide a string into substrings using the space separator. It also uses the second parameter to limit the number of substrings to two: let str = 'JavaScript String split()'; let substrings = str.split(' ', 2); console.log(substrings); Code language: JavaScript (javascript) Output: ["JavaScript ...

  5. 17 lug 2017 · The split() method splits a String object into an array of strings by separating the string into substrings, using a specified separator string to determine where to make each split. Syntax str .split([ separator [, limit ]])

  6. 10 nov 2019 · The split () method separates an original string into an array of substrings, based on a separator string that you pass as input. The original string is not altered by split (). Syntax const splitStr = str.split (separator, limit); * separator - a string indicating where each split should occur *.