190
questions
0
votes
2
answers
45
views
Numbers keep sorting alphabetically despite being integers
On my dataset in SQLite any query that sorts numbers (i.e. a GROUP BY clause) sorts alphabetically (1, 11, 12, 2) rather than numerically (1, 2, 11, 12). The data is coming back as for example 999,000,...
0
votes
1
answer
98
views
How do I take 2 tabs from a google sheet and combine based on the 1st column but also sum the 2nd column in Google Sheets?
1st table:
Company
Cost
A
$100
B
$200
C
$50
D
$100
2nd table:
Company
Cost
A
$50
D
$75
A
$90
D
$100
B
$200
D
$100
I want combine the data in a new tab so that all data from company A is ...
0
votes
0
answers
66
views
Is there a method in PowerAutomate Adobe PDF Services Connector to order files by name before merging?
I've written (with the help of friendly StackOverflowers) a recursive flow within MS PowerAutomate (web) using the Merge action of the Adobe PDF Services Connector which, merges all .pdf files in any ...
0
votes
1
answer
48
views
How can I sort characters in a string field alphabetically in SQLite? ("sokoban"--->"abknoos" )
How can I sort the characters in a string value in SQLite Database?
For example:
"macedonia" --sorted--> "aacdeimno"?
I know one method: if I use another table: integers(i int)...
2
votes
2
answers
264
views
Accent sensitive sort in PostgreSQL
How to sort text in PostgreSQL in Latvian alphabetic order, so any letter without accent always comes before the letter with accent?
For example this
select * from (
select 'bā' as name
union ...
2
votes
1
answer
90
views
C# String sorting... how to compare non-Ordinal but put lowercase after uppercase for strings starting with same letter?
Suppose I have four strings abc, Abc, Bca, and bca. The requirement is that these would be sorted (when alphabetical) to Abc, abc, Bca, bca.
With this code:
names.Sort((a, b) => string.Compare(a, b)...
2
votes
2
answers
444
views
Sorting strings with Turkish alphabetical order in Dart
I want to sort the Turkish name of countries in Dart, however I couldn't find a method to customize the alphabetical order during sorting operation like collations in Java.
For example when I sort ...
1
vote
1
answer
214
views
What locale/rule gives this string sort order?
I have subscribed to a cloud drive service. All good until I needed to check that all folders in a long list had been actually uploaded. I realized that the name-based sort order in my local system is ...
0
votes
2
answers
446
views
Order alphabetically each element of a list in R
I have a dataframe and one of the variables is a list. I want each of the vectors in the list to be alphabetically ordered.
[1] D,F should become F,D
[2] B,D,C should become B,C,D
and so on with each ...
0
votes
1
answer
75
views
I want to sort .properties file in alphabetical order using php
**I want to sort .properties file in alphabetical order with comments. Only alphabetical order is working fine but when i am trying to sort with comments it's not showing comments.
this is my ....
1
vote
1
answer
695
views
A Script To Sort Objects Alphabetically Within A Layer In Adobe Illustrator CC?
I'm not literate about programming but I need a script to help me alphabetically sort objects in a layer in Adobe Illustrator. My vector is a map having 1 layer with all the objects I need to sort at ...
2
votes
1
answer
121
views
Alphabetically sorting an array within an array in Ruby?
Method input:
["eat","tea","tan","ate","nat","bat"]
I have grouped each of the anagrams into their own array within an array through this ...
0
votes
1
answer
166
views
Sorting 'Alphabetically' (Alien Dictionary Code Problem)
I've started tackling coding problems to try and improve my skills.
I'm working on the 'Alien Dictionary' coding problem which, when given a sorted list of 'Alien Words' you need to determine the '...
0
votes
4
answers
547
views
Is it possible to order an array alphabetically in Laravel?
I am new to Laravel and I was wondering if I can order the following multidimensional array with countries alphabetically? So I want all the countries inside the continents to be ordered ...
0
votes
1
answer
113
views
JS: Alphabetizing list of radio buttons by label.text() after appending new radio button from text input
Edit
Now the new radio button is sorted correctly into the dropdown menu but only the first one. The new button is simply appended to the last node in all other lists.
I have a dynamic table that ...