I have a question about sort the string in Angular.
The ideal sequence:
"1" q1
"1.1" q2
"1.1.1" q3
"10" q4
"11" q5
Sorted sequence after orderby
"1" q1
"10" q4
"11" q5
"1.1" q2
"1.1.1" q3
How to use the order by to have the right sequence with hierarchy, or custom function is needed? Thanks