{"id":1612,"date":"2017-03-22T09:24:22","date_gmt":"2017-03-22T08:24:22","guid":{"rendered":"http:\/\/oprsteny.cz\/?p=1612"},"modified":"2017-03-22T09:24:22","modified_gmt":"2017-03-22T08:24:22","slug":"abap-get-x-last-characters-of-a-string","status":"publish","type":"post","link":"https:\/\/oprsteny.cz\/?p=1612","title":{"rendered":"ABAP &#8211; Get X last characters of a string"},"content":{"rendered":"<pre lang=\"abap\">FORM get_x_last_chars USING iv_string\r\n                            iv_num_last_chars TYPE i\r\n                      CHANGING cv_result.\r\n  IF strlen( iv_string ) &lt; iv_num_last_chars.\r\n    cv_result = iv_string.\r\n  ELSE.\r\n    cv_result = substring( val = iv_string \r\n                           off = strlen( iv_string ) - iv_num_last_chars \r\n                           len = iv_num_last_chars ).\r\n  ENDIF.\r\nENDFORM.<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>FORM get_x_last_chars USING iv_string iv_num_last_chars TYPE i CHANGING cv_result. IF strlen( iv_string ) &lt; iv_num_last_chars. cv_result = iv_string. ELSE. cv_result = substring( val = iv_string off = strlen( iv_string ) &#8211; iv_num_last_chars len = iv_num_last_chars ). ENDIF. ENDFORM.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"ABAP - Get X last characters of a string","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[1],"tags":[],"class_list":["post-1612","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p3nYbe-q0","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1612","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1612"}],"version-history":[{"count":2,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1612\/revisions"}],"predecessor-version":[{"id":1614,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1612\/revisions\/1614"}],"wp:attachment":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1612"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1612"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1612"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}