AWK script - Mailing list pgsql-novice

From Atif Jung
Subject AWK script
Date
Msg-id i2ud1c6b9c51004130630o7ff6aca9wc5c3724d82c40553@mail.gmail.com
Whole thread Raw
Responses Re: AWK script  (glenn <glenn@davy.net.au>)
List pgsql-novice
I've been tasked with writing a script which will automatically update our exisitng INFORMIX code to include POSTGRES compliant equivalent code. My awk skills are pretty basic to say the least, but  I've managed to write some of the rules in an awk script, but am having difficulty with the following 
 
 
CHANGE INFORMIX CODE
 
ORDER BY var[x,y];
 
TO POSTGRES CODE
 
ORDER BY SUBSTRING(var FROM x FOR y);
 
my problem is var[x,y] is completely variable. How do I check for that in AWK/SED? Is it even possible?
 
Thanks
 

pgsql-novice by date:

Previous
From: Jasen Betts
Date:
Subject: Re: Partitioning for query performance
Next
From: Atif Jung
Date:
Subject: Re: AWK script