Hi,
How can I extract unique numbers from a long list of numbers (arranged linewise). I need a regular expression to do that.
I am using a log program called baretailpro which enables searching through a log data and display per regex.
Example Input:
123
321
123
432
343
343
432
811
932
432
...list extends upto n number linewise
Example Output:
123
321
432
343
811
932
...list extends upto n numbers linewise
Rgds,
Anita