SlideShare una empresa de Scribd logo
1 de 36
UNSTRING
UNSTRING Syntax. ,[object Object],[object Object]
How the UNSTRING works ,[object Object],[object Object],[object Object]
UNSTRING Termination ,[object Object],[object Object],[object Object],[object Object]
UNSTRING clauses. ,[object Object],[object Object],[object Object],[object Object],[object Object]
The UNSTRING clauses 2. ,[object Object],[object Object],[object Object]
UNSTRING Example 1 01 DayStr  PIC XX.   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr   INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 1 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9  - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr   INTO DayStr , MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 1 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. - 0 01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9  - 0  5 - 8 0 ACCEPT DateStr. UNSTRING DateStr   INTO DayStr, MonthStr,  YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 1 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. - 0 01 YearStr  PIC XX. 5 - 01 DateStr  PIC X(8). 1 9 - 0  5 -  8 0 ACCEPT DateStr. UNSTRING DateStr   INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 1 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. - 0 01 YearStr  PIC XX. 5 - 01 DateStr  PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr   INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING. Chars Left
UNSTRING Example 2 01 DayStr  PIC XX.   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(14). 1 9 s t o p 0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop"   INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 2 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(14). 1 9   s t o p  0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop"   INTO DayStr,  MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 2 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5 01 YearStr  PIC XX.   01 DateStr  PIC X(14). 1 9 s t o p  0 5   s t o p  8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop"   INTO DayStr, MonthStr,  YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 2 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5 01 YearStr  PIC XX. 8 0 01 DateStr  PIC X(14). 1 9 s t o p 0 5 s t o p  8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop"   INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 3 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9   -  0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
UNSTRING Example 3 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5   01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9 -  0 5   /  8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
UNSTRING Example 3 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5   01 YearStr  PIC XX. 8 0 01 DateStr  PIC X(8). 1 9 - 0 5 /  8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
UNSTRING Example 3 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5   01 YearStr  PIC XX. 8 0 01 DateStr  PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2 19 05 80 - /
UNSTRING Example 4 01 DayStr  PIC XX.   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold1 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1
UNSTRING Example 4 01 DayStr  PIC XX. 1 9   01 MonthStr PIC XX. 0 5   01 YearStr  PIC XX. 8 0 01 DateStr  PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY "/" OR "-"   INTO DayStr  DELIMITER IN Hold1 MonthStr DELIMITER IN Hold1 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 19 05 80 /
UNSTRING Example 5 01 DayStr  PIC XX.   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY  ALL "-"   INTO DayStr, MonthStr, YearStr   ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 5 01 DayStr  PIC XX. 1 5   01 MonthStr PIC XX. 0 7   01 YearStr  PIC XX. 9 4 01 DateStr  PIC X(11). 1 5   - - -   0 7   - -   9 4 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY  ALL "-"   INTO DayStr, MonthStr, YearStr   ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 6 01 DayStr  PIC XX.   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY  "-"   INTO DayStr, MonthStr, YearStr   ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
UNSTRING Example 6 01 DayStr  PIC XX. 1 5   01 MonthStr PIC XX.   01 YearStr  PIC XX.   01 DateStr  PIC X(11). 1 5   - -  - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr   DELIMITED BY  "-"   INTO DayStr, MonthStr, YearStr   ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING. Chars Left
UNSTRING Example 7 01 OldName  PIC X(80). 01 TempName. 02 NameInitial  PIC X. 02 FILLER  PIC X(15). 01 NewName  PIC X(30). 01 Pointers. 02 StrPtr  PIC 99 VALUE 1. 02 UnstrPtr  PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   Display TempName END-PERFORM STOP RUN. Tim  John  Roberts
UNSTRING Example 7 01 OldName  PIC X(80). 01 TempName. 02 NameInitial  PIC X. 02 FILLER  PIC X(15). 01 NewName  PIC X(30). 01 Pointers. 02 StrPtr  PIC 99 VALUE 1. 02 UnstrPtr  PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   Display TempName END-PERFORM STOP RUN. Tim Tim   John  Roberts T im
UNSTRING Example 7 01 OldName  PIC X(80). 01 TempName. 02 NameInitial  PIC X. 02 FILLER  PIC X(15). 01 NewName  PIC X(30). 01 Pointers. 02 StrPtr  PIC 99 VALUE 1. 02 UnstrPtr  PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   Display TempName END-PERFORM STOP RUN. John Tim  John   Roberts J ohn
UNSTRING Example 7 01 OldName  PIC X(80). 01 TempName. 02 NameInitial  PIC X. 02 FILLER  PIC X(15). 01 NewName  PIC X(30). 01 Pointers. 02 StrPtr  PIC 99 VALUE 1. 02 UnstrPtr  PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   Display TempName END-PERFORM STOP RUN. Roberts Tim  John  Roberts R oberts
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts T im
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts T  im T .
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts J ohn T .
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts J  ohn T .  J .
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts R oberts T . J .
UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr   END-UNSTRING   END-PERFORM STRING SPACE TempName DELIMITED BY SIZE  INTO NewName WITH POINTER StrPtr   END-STRING STOP RUN. Tim  John  Roberts R oberts T . J .  Roberts

Más contenido relacionado

Último

Call Girls in Faridabad 9000000000 Faridabad Escorts Service
Call Girls in Faridabad 9000000000 Faridabad Escorts ServiceCall Girls in Faridabad 9000000000 Faridabad Escorts Service
Call Girls in Faridabad 9000000000 Faridabad Escorts ServiceTina Ji
 
fmovies-Movies hold a special place in the hearts
fmovies-Movies hold a special place in the heartsfmovies-Movies hold a special place in the hearts
fmovies-Movies hold a special place in the heartsa18205752
 
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji Escorts
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji EscortsFun Call Girls In Goa 7028418221 Call Girl Service In Panaji Escorts
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji EscortsApsara Of India
 
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...Amil Baba Company
 
Vip Delhi Ncr Call Girls Best Services Available
Vip Delhi Ncr Call Girls Best Services AvailableVip Delhi Ncr Call Girls Best Services Available
Vip Delhi Ncr Call Girls Best Services AvailableKomal Khan
 
Statement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfileStatement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfilef4ssvxpz62
 
(伦敦大学毕业证学位证成绩单-PDF版)
(伦敦大学毕业证学位证成绩单-PDF版)(伦敦大学毕业证学位证成绩单-PDF版)
(伦敦大学毕业证学位证成绩单-PDF版)twfkn8xj
 
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Sonam Pathan
 
Call Girl Contact Number Andheri WhatsApp:+91-9833363713
Call Girl Contact Number Andheri WhatsApp:+91-9833363713Call Girl Contact Number Andheri WhatsApp:+91-9833363713
Call Girl Contact Number Andheri WhatsApp:+91-9833363713Sonam Pathan
 
VIP Call Girls In worli Mumbai 00000000 Independent Call Girls
VIP Call Girls In  worli Mumbai 00000000 Independent Call GirlsVIP Call Girls In  worli Mumbai 00000000 Independent Call Girls
VIP Call Girls In worli Mumbai 00000000 Independent Call GirlsCall Girls Mumbai
 
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesHi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesApsara Of India
 
Call Girls Chorasi 7397865700 Ridhima Hire Me Full Night
Call Girls Chorasi 7397865700 Ridhima Hire Me Full NightCall Girls Chorasi 7397865700 Ridhima Hire Me Full Night
Call Girls Chorasi 7397865700 Ridhima Hire Me Full Nightssuser7cb4ff
 
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...Amil Baba Company
 
Udaipur Call Girls 9602870969 Call Girl in Udaipur Rajasthan
Udaipur Call Girls 9602870969 Call Girl in Udaipur RajasthanUdaipur Call Girls 9602870969 Call Girl in Udaipur Rajasthan
Udaipur Call Girls 9602870969 Call Girl in Udaipur RajasthanApsara Of India
 
1681275559_haunting-adeline and hunting.pdf
1681275559_haunting-adeline and hunting.pdf1681275559_haunting-adeline and hunting.pdf
1681275559_haunting-adeline and hunting.pdfTanjirokamado769606
 
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCRdollysharma2066
 
Call Girls SG Highway 7397865700 Ridhima Hire Me Full Night
Call Girls SG Highway 7397865700 Ridhima Hire Me Full NightCall Girls SG Highway 7397865700 Ridhima Hire Me Full Night
Call Girls SG Highway 7397865700 Ridhima Hire Me Full Nightssuser7cb4ff
 
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcE
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcEViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcE
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcEApsara Of India
 
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceVIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceApsara Of India
 

Último (20)

Call Girls Koti 7001305949 all area service COD available Any Time
Call Girls Koti 7001305949 all area service COD available Any TimeCall Girls Koti 7001305949 all area service COD available Any Time
Call Girls Koti 7001305949 all area service COD available Any Time
 
Call Girls in Faridabad 9000000000 Faridabad Escorts Service
Call Girls in Faridabad 9000000000 Faridabad Escorts ServiceCall Girls in Faridabad 9000000000 Faridabad Escorts Service
Call Girls in Faridabad 9000000000 Faridabad Escorts Service
 
fmovies-Movies hold a special place in the hearts
fmovies-Movies hold a special place in the heartsfmovies-Movies hold a special place in the hearts
fmovies-Movies hold a special place in the hearts
 
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji Escorts
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji EscortsFun Call Girls In Goa 7028418221 Call Girl Service In Panaji Escorts
Fun Call Girls In Goa 7028418221 Call Girl Service In Panaji Escorts
 
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...
Amil Baba in Pakistan Kala jadu Expert Amil baba Black magic Specialist in Is...
 
Vip Delhi Ncr Call Girls Best Services Available
Vip Delhi Ncr Call Girls Best Services AvailableVip Delhi Ncr Call Girls Best Services Available
Vip Delhi Ncr Call Girls Best Services Available
 
Statement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfileStatement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfile
 
(伦敦大学毕业证学位证成绩单-PDF版)
(伦敦大学毕业证学位证成绩单-PDF版)(伦敦大学毕业证学位证成绩单-PDF版)
(伦敦大学毕业证学位证成绩单-PDF版)
 
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
 
Call Girl Contact Number Andheri WhatsApp:+91-9833363713
Call Girl Contact Number Andheri WhatsApp:+91-9833363713Call Girl Contact Number Andheri WhatsApp:+91-9833363713
Call Girl Contact Number Andheri WhatsApp:+91-9833363713
 
VIP Call Girls In worli Mumbai 00000000 Independent Call Girls
VIP Call Girls In  worli Mumbai 00000000 Independent Call GirlsVIP Call Girls In  worli Mumbai 00000000 Independent Call Girls
VIP Call Girls In worli Mumbai 00000000 Independent Call Girls
 
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesHi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
 
Call Girls Chorasi 7397865700 Ridhima Hire Me Full Night
Call Girls Chorasi 7397865700 Ridhima Hire Me Full NightCall Girls Chorasi 7397865700 Ridhima Hire Me Full Night
Call Girls Chorasi 7397865700 Ridhima Hire Me Full Night
 
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...
Amil Baba in karachi Kala jadu Expert Amil baba Black magic Specialist in Isl...
 
Udaipur Call Girls 9602870969 Call Girl in Udaipur Rajasthan
Udaipur Call Girls 9602870969 Call Girl in Udaipur RajasthanUdaipur Call Girls 9602870969 Call Girl in Udaipur Rajasthan
Udaipur Call Girls 9602870969 Call Girl in Udaipur Rajasthan
 
1681275559_haunting-adeline and hunting.pdf
1681275559_haunting-adeline and hunting.pdf1681275559_haunting-adeline and hunting.pdf
1681275559_haunting-adeline and hunting.pdf
 
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
 
Call Girls SG Highway 7397865700 Ridhima Hire Me Full Night
Call Girls SG Highway 7397865700 Ridhima Hire Me Full NightCall Girls SG Highway 7397865700 Ridhima Hire Me Full Night
Call Girls SG Highway 7397865700 Ridhima Hire Me Full Night
 
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcE
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcEViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcE
ViP Call Girls In Udaipur 9602870969 Gulab Bagh Escorts SeRvIcE
 
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceVIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
 

Destacado

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Unstring

  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7. UNSTRING Example 1 01 DayStr PIC XX. 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 8. UNSTRING Example 1 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr INTO DayStr , MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 9. UNSTRING Example 1 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. - 0 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 10. UNSTRING Example 1 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. - 0 01 YearStr PIC XX. 5 - 01 DateStr PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 11. UNSTRING Example 1 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. - 0 01 YearStr PIC XX. 5 - 01 DateStr PIC X(8). 1 9 - 0 5 - 8 0 ACCEPT DateStr. UNSTRING DateStr INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING. Chars Left
  • 12. UNSTRING Example 2 01 DayStr PIC XX. 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(14). 1 9 s t o p 0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 13. UNSTRING Example 2 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(14). 1 9 s t o p 0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 14. UNSTRING Example 2 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 01 DateStr PIC X(14). 1 9 s t o p 0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 15. UNSTRING Example 2 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 8 0 01 DateStr PIC X(14). 1 9 s t o p 0 5 s t o p 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "stop" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 16. UNSTRING Example 3 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
  • 17. UNSTRING Example 3 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
  • 18. UNSTRING Example 3 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 8 0 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2
  • 19. UNSTRING Example 3 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 8 0 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold2 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 SPACE Hold2 19 05 80 - /
  • 20. UNSTRING Example 4 01 DayStr PIC XX. 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold1 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1
  • 21. UNSTRING Example 4 01 DayStr PIC XX. 1 9 01 MonthStr PIC XX. 0 5 01 YearStr PIC XX. 8 0 01 DateStr PIC X(8). 1 9 - 0 5 / 8 0 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "/" OR "-" INTO DayStr DELIMITER IN Hold1 MonthStr DELIMITER IN Hold1 YearStr END-UNSTRING. DISPLAY DayStr SPACE MonthStr SPACE YearStr. DISPLAY Hold1 19 05 80 /
  • 22. UNSTRING Example 5 01 DayStr PIC XX. 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY ALL "-" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 23. UNSTRING Example 5 01 DayStr PIC XX. 1 5 01 MonthStr PIC XX. 0 7 01 YearStr PIC XX. 9 4 01 DateStr PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY ALL "-" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 24. UNSTRING Example 6 01 DayStr PIC XX. 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "-" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING.
  • 25. UNSTRING Example 6 01 DayStr PIC XX. 1 5 01 MonthStr PIC XX. 01 YearStr PIC XX. 01 DateStr PIC X(11). 1 5 - - - 0 7 - - 9 4 ACCEPT DateStr. UNSTRING DateStr DELIMITED BY "-" INTO DayStr, MonthStr, YearStr ON OVERFLOW DISPLAY "Chars Left" END-UNSTRING. Chars Left
  • 26. UNSTRING Example 7 01 OldName PIC X(80). 01 TempName. 02 NameInitial PIC X. 02 FILLER PIC X(15). 01 NewName PIC X(30). 01 Pointers. 02 StrPtr PIC 99 VALUE 1. 02 UnstrPtr PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING Display TempName END-PERFORM STOP RUN. Tim John Roberts
  • 27. UNSTRING Example 7 01 OldName PIC X(80). 01 TempName. 02 NameInitial PIC X. 02 FILLER PIC X(15). 01 NewName PIC X(30). 01 Pointers. 02 StrPtr PIC 99 VALUE 1. 02 UnstrPtr PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING Display TempName END-PERFORM STOP RUN. Tim Tim John Roberts T im
  • 28. UNSTRING Example 7 01 OldName PIC X(80). 01 TempName. 02 NameInitial PIC X. 02 FILLER PIC X(15). 01 NewName PIC X(30). 01 Pointers. 02 StrPtr PIC 99 VALUE 1. 02 UnstrPtr PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING Display TempName END-PERFORM STOP RUN. John Tim John Roberts J ohn
  • 29. UNSTRING Example 7 01 OldName PIC X(80). 01 TempName. 02 NameInitial PIC X. 02 FILLER PIC X(15). 01 NewName PIC X(30). 01 Pointers. 02 StrPtr PIC 99 VALUE 1. 02 UnstrPtr PIC 99 VALUE 1. 88 NameProcessed VALUE 81. PROCEDURE DIVISION. ProcessName. ACCEPT OldName. PERFORM UNTIL NameProcessed UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING Display TempName END-PERFORM STOP RUN. Roberts Tim John Roberts R oberts
  • 30. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts
  • 31. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts T im
  • 32. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts T im T .
  • 33. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts J ohn T .
  • 34. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts J ohn T . J .
  • 35. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts R oberts T . J .
  • 36. UNSTRING Example 8 OldName TempName NewName PROCEDURE DIVISION. ProcessName. ACCEPT OldName. UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING PERFORM UNTIL NameProcessed STRING NameInitial "." DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING UNSTRING OldName DELIMITED BY ALL SPACES INTO TempName WITH POINTER UnstrPtr END-UNSTRING END-PERFORM STRING SPACE TempName DELIMITED BY SIZE INTO NewName WITH POINTER StrPtr END-STRING STOP RUN. Tim John Roberts R oberts T . J . Roberts