{"id":5087,"date":"2026-06-18T12:11:49","date_gmt":"2026-06-18T12:11:49","guid":{"rendered":"https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/"},"modified":"2026-06-18T12:11:49","modified_gmt":"2026-06-18T12:11:49","slug":"number-sorter-sort-numbers-online-ascending-descending-duplicates","status":"publish","type":"page","link":"https:\/\/rimanagency.com\/fr\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/","title":{"rendered":"Trieur de nombres \u2014 Triez les nombres en ligne (croissant, d\u00e9croissant, doublons)"},"content":{"rendered":"<style>.rt-h{background:linear-gradient(135deg,#f1f5e8,#e8efdb);border-radius:14px;padding:32px;margin:0 0 24px;text-align:center}.rt-h h1{margin:0 0 10px;font-size:28px;color:#4a6320}.rt-g{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:0 0 24px}.rt-f,.rt-o{background:#fff;border:1px solid #e0e6d8;border-radius:10px;padding:22px}.rt-f h3,.rt-o h3{margin:0 0 14px;color:#4a6320;font-size:18px}.rt-f label{display:block;font-size:13px;color:#516048;font-weight:600;margin:10px 0 6px}.rt-f input,.rt-f select,.rt-f textarea{width:100%;padding:9px;border:1px solid #d4dac6;border-radius:6px;font-size:14px;box-sizing:border-box;font-family:inherit}.rt-btn{background:#719430;color:#fff;border:none;padding:11px 20px;border-radius:6px;font-weight:700;cursor:pointer;width:100%;margin-top:14px;font-size:15px}.rt-btn:hover{background:#4a6320}.rt-cta{background:linear-gradient(135deg,#719430,#4a6320);color:#fff;border-radius:14px;padding:32px;text-align:center;margin:30px 0}.rt-cta h3{margin:0 0 6px;color:#fff}.rt-cta a{background:#fff;color:#4a6320;padding:12px 28px;border-radius:6px;font-weight:700;text-decoration:none;display:inline-block;margin-top:14px}.rt-o-big{font-size:36px;font-weight:800;color:#719430;text-align:center;margin:6px 0;word-break:break-word}@media(max-width:768px){.rt-g{grid-template-columns:1fr}}<\/style>\n<div class=\"rt-h\">\n<h1>Number Sorter<\/h1>\n<p>Paste a list of numbers (one per line or comma-separated). Sort ascending or descending, with or without duplicates, with statistics like sum, average, min, max, and median.<\/p>\n<\/div>\n<div class=\"rt-g\">\n<div class=\"rt-f\">\n<h3>Your Numbers<\/h3>\n<p><label>Paste numbers<\/label><textarea id=\"ns-in\" rows=\"6\" placeholder=\"12, 3, 47, 8 or one per line\"><\/textarea><label>Order<\/label><select id=\"ns-order\"><option value=\"asc\" selected>Ascending (smallest \u2192 largest)<\/option><option value=\"desc\">Descending (largest \u2192 smallest)<\/option><\/select><label>Duplicates<\/label><select id=\"ns-dedupe\"><option value=\"keep\" selected>Keep duplicates<\/option><option value=\"unique\">Remove duplicates<\/option><\/select><button class=\"rt-btn\" onclick=\"cNs()\">Convert<\/button><\/div>\n<div class=\"rt-o\">\n<h3>Sorted Result<\/h3>\n<p><textarea id=\"ns-out\" rows=\"6\" readonly style=\"width:100%;padding:10px;border:1px solid #d4dac6;border-radius:6px;font-size:14px;box-sizing:border-box;font-family:Consolas,monospace;background:#fafafa\">Sorted output and statistics appear here<\/textarea><button class=\"rt-btn\" style=\"background:#516048;margin-top:10px\" onclick=\"copynumbersorter()\">Copy to Clipboard<\/button><\/p>\n<div id=\"ns-stats\" style=\"margin-top:14px;font-size:13px;color:#516048\"><\/div>\n<\/div>\n<\/div>\n<p><script>function cNs(){var raw=document.getElementById(\"ns-in\").value;var nums=raw.split(\/[\\s,;]+\/).map(function(s){return parseFloat(s)}).filter(function(n){return!isNaN(n)});if(!nums.length){document.getElementById(\"ns-out\").value=\"\";document.getElementById(\"ns-stats\").innerHTML=\"\";return}var order=document.getElementById(\"ns-order\").value;var dedupe=document.getElementById(\"ns-dedupe\").value;if(dedupe===\"unique\")nums=Array.from(new Set(nums));nums.sort(function(a,b){return order===\"asc\"?a-b:b-a});document.getElementById(\"ns-out\").value=nums.join(\", \");var sum=nums.reduce(function(a,b){return a+b},0);var avg=sum\/nums.length;var sorted=nums.slice().sort(function(a,b){return a-b});var median=sorted.length%2?sorted[Math.floor(sorted.length\/2)]:(sorted[sorted.length\/2-1]+sorted[sorted.length\/2])\/2;document.getElementById(\"ns-stats\").innerHTML=\"<b>Count:<\/b> \"+nums.length+\" &nbsp;|&nbsp; <b>Sum:<\/b> \"+sum.toLocaleString()+\" &nbsp;|&nbsp; <b>Average:<\/b> \"+avg.toFixed(2)+\" &nbsp;|&nbsp; <b>Min:<\/b> \"+sorted[0]+\" &nbsp;|&nbsp; <b>Max:<\/b> \"+sorted[sorted.length-1]+\" &nbsp;|&nbsp; <b>Median:<\/b> \"+median}document.getElementById(\"ns-in\").addEventListener(\"input\",cNs);document.getElementById(\"ns-order\").addEventListener(\"change\",cNs);document.getElementById(\"ns-dedupe\").addEventListener(\"change\",cNs);cNs();<\/script><script>function copynumbersorter(){var ta=document.getElementById(\"ns-out\");ta.select();navigator.clipboard.writeText(ta.value);event.target.textContent=\"\u2713 Copied!\";setTimeout(function(){event.target.textContent=\"Copy to Clipboard\"},1500)}<\/script><\/p>\n<h2>How to use the Number Sorter<\/h2>\n<p>Paste numbers separated by commas, spaces, semicolons, or newlines. Choose ascending or descending sort order. Choose whether to keep or remove duplicates. The tool sorts instantly and shows useful statistics: count, sum, average, min, max, and median.<\/p>\n<h2>Why this tool matters<\/h2>\n<p>Sorting numbers is a constant marketing-and-analytics task \u2014 campaign spend, conversion rates, page views, revenue, A\/B test results, survey scores. Doing it in Excel takes seconds but losing focus to switch apps takes minutes. A browser-tab tool keeps you in the flow.<\/p>\n<h2>Common use cases<\/h2>\n<ul>\n<li>Quick analysis of campaign performance numbers from a Slack message<\/li>\n<li>Sorting A\/B test result samples before computing significance<\/li>\n<li>Cleaning a list of phone numbers, IDs, or transaction amounts<\/li>\n<li>Removing duplicate IDs from a pasted CSV column<\/li>\n<li>Finding the median of a survey response set<\/li>\n<li>Quickly identifying max\/min outliers in a small dataset<\/li>\n<\/ul>\n<h2>Frequently Asked Questions<\/h2>\n<p><strong>Does it handle decimals and negative numbers?<\/strong><br \/>Yes. The parser accepts any valid numeric format: integers, decimals, negatives, scientific notation (1.5e3).<\/p>\n<p><strong>What separator should I use?<\/strong><br \/>Any combination of commas, spaces, semicolons, or newlines works. The tool auto-splits on whitespace and punctuation.<\/p>\n<p><strong>How many numbers can it handle?<\/strong><br \/>Up to several tens of thousands without browser slowdown. For larger datasets, use a spreadsheet or scripting language.<\/p>\n<p><strong>Can I sort text alphabetically with this?<\/strong><br \/>No \u2014 this is purely numeric. For text sorting, paste into a spreadsheet column and sort that.<\/p>\n<div class=\"rt-cta\">\n<h3>Running marketing analytics on growing datasets?<\/h3>\n<p style=\"margin:0;opacity:.95\">Riman Agency builds GA4, Looker Studio, and analytics programs.<\/p>\n<p><a href=\"\/contact\/\">Talk to Analytics Team<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Number Sorter Paste a list of numbers (one per line or comma-separated). Sort ascending or descending, with or without duplicates, with statistics like sum, average, min, max, and median. Your Numbers Paste numbersOrderAscending (smallest \u2192 largest)Descending (largest \u2192 smallest)DuplicatesKeep duplicatesRemove duplicatesConvert Sorted Result Sorted output and statistics appear hereCopy to Clipboard How to use the [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-5087","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rimanagency.com\/fr\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency\" \/>\n<meta property=\"og:description\" content=\"Number Sorter Paste a list of numbers (one per line or comma-separated). Sort ascending or descending, with or without duplicates, with statistics like sum, average, min, max, and median. Your Numbers Paste numbersOrderAscending (smallest \u2192 largest)Descending (largest \u2192 smallest)DuplicatesKeep duplicatesRemove duplicatesConvert Sorted Result Sorted output and statistics appear hereCopy to Clipboard How to use the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rimanagency.com\/fr\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/\" \/>\n<meta property=\"og:site_name\" content=\"Riman Agency\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/number-sorter-sort-numbers-online-ascending-descending-duplicates\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/number-sorter-sort-numbers-online-ascending-descending-duplicates\\\/\",\"name\":\"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\"},\"datePublished\":\"2026-06-18T12:11:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/number-sorter-sort-numbers-online-ascending-descending-duplicates\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rimanagency.com\\\/number-sorter-sort-numbers-online-ascending-descending-duplicates\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/number-sorter-sort-numbers-online-ascending-descending-duplicates\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rimanagency.com\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"name\":\"Riman Agency\",\"description\":\"A Full Service Digital Marketing Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rimanagency.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\",\"name\":\"Riman Agency\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"contentUrl\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"width\":694,\"height\":211,\"caption\":\"Riman Agency\"},\"image\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/rimanagency.com\/fr\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/","og_locale":"fr_CA","og_type":"article","og_title":"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency","og_description":"Number Sorter Paste a list of numbers (one per line or comma-separated). Sort ascending or descending, with or without duplicates, with statistics like sum, average, min, max, and median. Your Numbers Paste numbersOrderAscending (smallest \u2192 largest)Descending (largest \u2192 smallest)DuplicatesKeep duplicatesRemove duplicatesConvert Sorted Result Sorted output and statistics appear hereCopy to Clipboard How to use the [&hellip;]","og_url":"https:\/\/rimanagency.com\/fr\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/","og_site_name":"Riman Agency","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/","url":"https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/","name":"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates) - Riman Agency","isPartOf":{"@id":"https:\/\/rimanagency.com\/#website"},"datePublished":"2026-06-18T12:11:49+00:00","breadcrumb":{"@id":"https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/rimanagency.com\/number-sorter-sort-numbers-online-ascending-descending-duplicates\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rimanagency.com\/home\/"},{"@type":"ListItem","position":2,"name":"Number Sorter \u2014 Sort Numbers Online (Ascending, Descending, Duplicates)"}]},{"@type":"WebSite","@id":"https:\/\/rimanagency.com\/#website","url":"https:\/\/rimanagency.com\/","name":"Agence Riman","description":"Une agence de marketing num\u00e9rique \u00e0 service complet","publisher":{"@id":"https:\/\/rimanagency.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rimanagency.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/rimanagency.com\/#organization","name":"Agence Riman","url":"https:\/\/rimanagency.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/","url":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","contentUrl":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","width":694,"height":211,"caption":"Riman Agency"},"image":{"@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/5087","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/comments?post=5087"}],"version-history":[{"count":0,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/5087\/revisions"}],"wp:attachment":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/media?parent=5087"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}