Doh - thanks! My carelessness chalked up to Monday morning.
Thanks to all who pointed this out on and off list!
-Corey
Bryan Baldus wrote:
On Monday, April 30, 2007 2:18 PM, Corey Harper wrote:
I tried the following variations to no avail:
* != '' (no space)
* != ' ' (with space)
* != undef
On Monday, April 30, 2007 2:18 PM, Corey Harper wrote:
>I tried the following variations to no avail:
>* != '' (no space)
>* != ' ' (with space)
>* != undef
>* != null
>* != '#'
>* !- '_'
>
>I ended up having to use the following, which achieved the desired
>effect with any of the above in the fir
Hi folks --
Don't know if this is a bug report or just a general FYI. I've been
having trouble cleaning up 2nd indicators that aren't blank for 7xx fields.
I was using the syntax in the Tutorial.pod doc:
if ($field_7xx->indicator(2) != ' ') {
$field_7xx->update( ind2 => ' ' );
}
How