‎2008 Feb 14 9:43 AM
Can anyone tell how to fetch a substring using function module or any other method. Please do the needful
‎2008 Feb 14 9:53 AM
Hi,
You can use the SPLIT command instead of a function module, with the following syntax:
SPLIT v_str AT v_separator INTO v_str1 v_str2 ...
You must indicate the character used as separator.
Regards,
Ivson
‎2008 Feb 14 9:53 AM
Hi,
If you know the offset <offset> and length <length> of the substring you need to get then use function module
v_string+<offset>(<length>).
Cheers,
Aditya