Re: conditional statement: indicator not blank

2007-04-30 Thread Corey Harper
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

RE: conditional statement: indicator not blank

2007-04-30 Thread Bryan Baldus
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

conditional statement: indicator not blank

2007-04-30 Thread Corey Harper
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