2010 Feb 10 12:39 PM
Hi Friends,
Any one can help me.
I need a SAP Widget string function to Extract a portion of a string (Substring)
Thanks and regards
Srikanth S
2010 Feb 10 12:54 PM
Hi,
A simple string operation will do it.
Take the offset you wanted.
eg: DATA: l_string TYPE string.
l_string = 'This is test'.
this = l_string+0(4).
is = l_string+5(2).
Thanks,
Vinod.
2010 Feb 10 1:05 PM
Check this
link:[http://help.sap.com/abapdocu_70/en/ABENSUBSTRING_FUNCTIONS.htm]