Book Image

SAP ABAP Advanced Cookbook

By : Rehan Zaidi
Book Image

SAP ABAP Advanced Cookbook

By: Rehan Zaidi

Overview of this book

ABAP (Advanced Business Application Programming) is SAP's proprietary 4th Generation Language (4GL). SAP core is written almost entirely in ABAP.ABAP is a high level programming language used in SAP for development and other customization processes."SAP ABAP Advanced Cookbook"ù covers advanced SAP programming applications with ABAP. It teaches you to enhance SAP applications by developing custom reports and interfaces with ABAP programming. This cookbook has quick and advanced real world recipes for programming ABAP.It begins with the applications of ABAP Objects and ALV tips and tricks. It then covers Design Patterns and Dynamic Programming in detail.You will also learn the usage of quality improvement tools such as transaction SAT, SQL Trace, and the Code Inspector.Simple transformations and its application in Excel Downloading will also be discussed, as well as the newest topics of Adobe Interactive Forms and the consumption and creation of Web services. The book comes to an end by covering advanced usage of Web Dynpro for ABAP and the latest advancement in Floorplan Manager.
Table of Contents (22 chapters)
SAP ABAP Advanced Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Interpreting HTML stream


In this recipe, we will see how an HTML code may be read and interpreted using regular expressions. We will create a program that will read an HTML stream in a string and will display the tag names along with the content of the tags. The FIND and replace statements are used together with a do loop. (This recipe will focus on reading tags beginning with <tag> and ending with <\tag>).

How to do it...

For creating a program for interpreting HTML code, follow the steps shown in the following steps:

  1. Declare three strings by the name htmlstream, tagcontents, and tagname.

  2. We then assign a suitable HTML code to the htmlstream variable.

  3. Within a do loop, a FIND REGEX statement is added that finds tag names and their contents. The regex used in this case for matching an HTML tag is '<(\u\w*)[^>]*>(.*)</\1>'.

  4. Once a tag is processed, a replace all occurrences statement is used for replacing the tag with '$$$'.

  5. The tag name and tag contents are printed.

  6. Once...