split at <B> and split at </B> are working fine
But split L_STRING1 AT # IS NOT WORKING.
all variables are declared as string only.
here is my code.
RESPONSE_STRING2 = RESPONSE_STRING.
SPLIT RESPONSE_STRING2 AT '<B>' INTO L_STRING1 L_STRING2.
SPLIT L_STRING2 AT '</B>' INTO L_STRING1 L_STRING2.
WHILE L_STRING1 IS NOT INITIAL.
SPLIT L_STRING1 AT '#' INTO L_STRING2 L_STRING1.
wa_STRING = L_STRING2.
APPEND wa_STRING TO LT_STRING.
CLEAR WA_STRING.
ENDWHILE.
If You are knows please reply me.
Thanks,
Narendra.