About 51 results
Open links in new tab
  1. javascript - How do I split a string, breaking at a particular ...

    8 split() method in JavaScript is used to convert a string to an array. It takes one optional argument, as a character, on which to split. In your case (~). If splitOn is skipped, it will simply put string as it is on …

  2. How do I split a string with multiple separators in JavaScript?

    Mar 16, 2009 · How do I split a string with multiple separators in JavaScript? I'm trying to split on both commas and spaces, but AFAIK JavaScript's split() function only supports one separator.

  3. javascript - How to use split? - Stack Overflow

    0 According to , the split() method divides a String into an ordered set of substrings, puts these substrings into an array, and returns the array. 🔸 Example

  4. Split string once in JavaScript? - Stack Overflow

    May 21, 2010 · If the string doesn't contain the delimiter @NickCraver's solution will still return an array of two elements, the second being an empty string. I prefer the behavior to match that of split.

  5. javascript - JS - Splitting a string and looping through results ...

    46 You can use .split() to split a string on a specified character with the results returned as an array. So then it's just a matter of looping through the array:

  6. javascript - What does .split () return if the string has no match ...

    Dec 29, 2014 · In this JavaScript code if the variable data does not have that character . then what will split return? x = data.split('.'); Will it be an array of the original string?

  7. how to split a string in javascript - Stack Overflow

    Sep 29, 2009 · Possible Duplicate: How do I split this string with JavaScript? how to split a string in javascript? example str = "this is part 1 one wall this is part 2 " now I want to split the str in 2 pa...

  8. javascript - How do I split a string into an array of characters ...

    var s = "overpopulation"; var ar = []; ar = s.split(); alert(ar); I want to string.split a word into array of characters. The above code doesn't seem to work - it returns "overpopulation" as Object.. How do i …

  9. javascript - Split string into array - Stack Overflow

    Split string into array [duplicate] Asked 14 years, 3 months ago Modified 6 years, 1 month ago Viewed 232k times

  10. javascript - Getting the last element of a split string array - Stack ...

    Dec 25, 2015 · I need to get the last element of a split array with multiple separators. The separators are commas and space. If there are no separators it should return the original string. If the string is "ho...