I am having problems to be able to do a trigger that orders me by categories an information that throws a command to me.
This is an example of what appears in a single line:
In this example, the first line has 3 components, the second line 2 components and the third 1 component. The order of the 3 lines is random.
I would like to use a trigger to sort these lines.
for example:
Line 1:
Level of knowledge 90%
Level of domain High
chakra 200
Line 2:
Healing ability Gifted
reach 5
Line 3:
Inheritance 50
I've tried to fix it with this:
Reg Exp:
With this line only shows me the data of the first line that contains 3 parts, but if there are only 2 parts does not show anything and if it is only 1 part also does not show the data.
Any idea how to fix it?
This is an example of what appears in a single line:
Level of knowledge 90% Level of domain High Chakra 200
Healing ability Gifted Reach 5
Inheritance 50
In this example, the first line has 3 components, the second line 2 components and the third 1 component. The order of the 3 lines is random.
I would like to use a trigger to sort these lines.
for example:
Line 1:
Level of knowledge 90%
Level of domain High
chakra 200
Line 2:
Healing ability Gifted
reach 5
Line 3:
Inheritance 50
I've tried to fix it with this:
Reg Exp:
[\s](.+?)[\s](\d+)\%[\s](.+)[\s](\d+)[ ](\d+)[\s](.+)[\s](\d+)[\s]
With this line only shows me the data of the first line that contains 3 parts, but if there are only 2 parts does not show anything and if it is only 1 part also does not show the data.
Any idea how to fix it?