Hi folks!

I'm relatively new to this, so I hope I can explain my problem in a way that's not too irritating!

I a bunch of aliases that have 1 of 2 beginning parts of the alias name. For example:

getmodelRegal
getmodelCentury
getmakeBuick
getmakeFord
etc.

listmodelRegal
listmodelCentury
listmakeBuick
listmakeFord
etc.

I made an alias called docat that returns the uncommon part of the name of the aliases listed above. So it returns things like modelRegal or makeBuick

Now, here's the problem, I need to combine the string returned by docat with the common name of the aliases list or get and get it to properly execute the command.

The code I have in there now is like this:

UC $1 $get $+ $docat(%sel) $+ ($1) | return

An example of what I want it to execute after everything is resolved is this:

UC $1 $getmodelRegal($1)

Is there any way to pull this off? The code I have in there doesn't work properly. Any help is greatly appreciated - this one line of code is the difference between efficiency and bloat for me! Thanks in advance!