Remove duplicate in a string - javascript

DistribuzioneGaussiana

I have a string in javascript where there are a lot of duplicates. For example I have:

var x = "Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Double,Double,Double"

What can I do to delete duplicates and to get for example x="Int32,Double"?

MinusFour

With Set and Array.from this is pretty easy:

Array.from(new Set(x.split(','))).toString()

var x = "Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Double,Double,Double"
x = Array.from(new Set(x.split(','))).toString();
document.write(x);

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

remove duplicate a tag in 2 string?

分類Dev

How to remove duplicate characters in a string using regex?

分類Dev

How to remove duplicate data in JavaScript RowDataPacket Array

分類Dev

Split string with custom condition in javascript (Not Duplicate)

分類Dev

Javascript - Remove '\n' from string

分類Dev

Remove all duplicate word from string using shell script

分類Dev

remove n occurrences of exclamation marks in a string javascript

分類Dev

How to remove an array of words from a string in javascript?

分類Dev

Remove duplicate rows in MySQL

分類Dev

XSL to remove duplicate records

分類Dev

Remove duplicate images

分類Dev

How to remove duplicate entries

分類Dev

Remove duplicate line in a Google Sheet

分類Dev

How to remove duplicate files in linux

分類Dev

Oracle Remove Duplicate Combination of Three

分類Dev

Oracle Remove Duplicate Combination of Three

分類Dev

How to remove special characters from a string using Javascript

分類Dev

Remove all occurrences of a character except the first one in string with javascript

分類Dev

Regex to remove comments from SQL Query String using JavaScript

分類Dev

Javascript remove all leading and trailing junk characters in a string

分類Dev

Python 2.7 store duplicate string or not

分類Dev

golang csv remove duplicate if matching column values

分類Dev

Remove duplicate key and value from json in java

分類Dev

remove consecutive duplicate with a certain values from dataframe

分類Dev

How to remove duplicate values from an array in PHP

分類Dev

How to remove duplicate values from an array in PHP

分類Dev

remove duplicate forward slashes from the URL

分類Dev

Best performance and solution to remove duplicate item in a list

分類Dev

Remove duplicate common output from two list

Related 関連記事

  1. 1

    remove duplicate a tag in 2 string?

  2. 2

    How to remove duplicate characters in a string using regex?

  3. 3

    How to remove duplicate data in JavaScript RowDataPacket Array

  4. 4

    Split string with custom condition in javascript (Not Duplicate)

  5. 5

    Javascript - Remove '\n' from string

  6. 6

    Remove all duplicate word from string using shell script

  7. 7

    remove n occurrences of exclamation marks in a string javascript

  8. 8

    How to remove an array of words from a string in javascript?

  9. 9

    Remove duplicate rows in MySQL

  10. 10

    XSL to remove duplicate records

  11. 11

    Remove duplicate images

  12. 12

    How to remove duplicate entries

  13. 13

    Remove duplicate line in a Google Sheet

  14. 14

    How to remove duplicate files in linux

  15. 15

    Oracle Remove Duplicate Combination of Three

  16. 16

    Oracle Remove Duplicate Combination of Three

  17. 17

    How to remove special characters from a string using Javascript

  18. 18

    Remove all occurrences of a character except the first one in string with javascript

  19. 19

    Regex to remove comments from SQL Query String using JavaScript

  20. 20

    Javascript remove all leading and trailing junk characters in a string

  21. 21

    Python 2.7 store duplicate string or not

  22. 22

    golang csv remove duplicate if matching column values

  23. 23

    Remove duplicate key and value from json in java

  24. 24

    remove consecutive duplicate with a certain values from dataframe

  25. 25

    How to remove duplicate values from an array in PHP

  26. 26

    How to remove duplicate values from an array in PHP

  27. 27

    remove duplicate forward slashes from the URL

  28. 28

    Best performance and solution to remove duplicate item in a list

  29. 29

    Remove duplicate common output from two list

ホットタグ

アーカイブ