abap 字符串操作(ABAP string manipulation) 1).SHIFT: truncate string 2).REPLACE: replace string 3) TRANSLATE: conversion string 4) SEARCH: lookup string 5).CONDENSE: removes the space in the string 6).SPLIT: split string 7).CONCATENATE: connection string 8) moving field content 9) converted...
SAP Managed Tags: ABAP Development Hi Sandeep, Try this in the below string # is replaced by space REPORT YCHATEST . DATA : V_STRING TYPE STRING. V_STRING = 'avvvvvv#kjkjkjdfk#jkjklsf#'. TRANSLATE V_STRING USING '# '. CONDENSE V_STRING no-gaps. WRITE : V_STRING. Reply All...
To declare this field in ABAP, create a new DATA field named “znumber1”, TYPEn. Again, alternatively this can be done by using the LIKE statement to refer back to the original field in the table. String Manipulation Like many other programming languages, ABAP provides the functionality to...