Hello
Is it possible to sort (by name) results from specific started caracter ?
Example : I have folders name and my started caracter is the second "#".
rrr#111#c
gegop#1668#b
zzz##z
i want sort like this (abz):
gegop#1668#b
rrr#111#c
zzz##z
How to sort (by name) from specific caracter
-
- Posts: 8
- Joined: Sat Jun 03, 2023 8:36 am
-
- Posts: 8
- Joined: Sat Jun 03, 2023 8:36 am
Re: How to sort (by name) from specific caracter
Thanks ! It's work very well
-
- Posts: 8
- Joined: Sat Jun 03, 2023 8:36 am
Re: How to sort (by name) from specific caracter
One last question :
Is it possible to not display specific caracter from match ?
example:
rrr#111#c
gegop#1668#b
zzz##z
to
c
b
z
Is it possible to not display specific caracter from match ?
example:
rrr#111#c
gegop#1668#b
zzz##z
to
c
b
z
Re: How to sort (by name) from specific caracter
Try it with:
The new column Regular Expression Match 1 will contain the text from after the second #.
Code: Select all
regex:^.*?#.*?#(.*)$ addcolumn:regmatch1 sort:regmatch1
-
- Posts: 8
- Joined: Sat Jun 03, 2023 8:36 am
Re: How to sort (by name) from specific caracter
Thank you NotNull !