ASE Linear analysis - Loop over loadcases but leave one out

Hello,

I have this simple script to loop over my loadcases for the linear analysis - i want to leave just one loadcase out, lets say LC_CON(55) - is there a simple way to implement this?

+PROG ASE urs:16 $ Linear Analysis - Containerload
HEAD
SYST PROB LINE ! Linear analysis
CTRL SOLV 4 ! Use “Direct Parallel Sparse Solver (PARDISO)” - Faster
CTRL WARN 185,398,399 ! Turn off warning for load outside plate

loop#i LC_CON
LC #LC_CON(#i)
endloop

end

+PROG ASE urs:16 $ Linear Analysis - Containerload
HEAD
SYST PROB LINE ! Linear analysis
CTRL SOLV 4 ! Use “Direct Parallel Sparse Solver (PARDISO)” - Faster
CTRL WARN 185,398,399 ! Turn off warning for load outside plate

loop#i LC_CON
if #i<>55
LC #LC_CON(#i)
endif
endloop

end

Thank ou!
what does if #i <>55 tell it? what does <> mean? can i find it in the manual?

<> means not equal. It is described in basics manual p. 8.2.14 Arithmetic Expressions

thank you, it worked as intended.