<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic strings offset and lengths in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645035#M877765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im always confused when it comes to string and offset and length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is means when we write 2(4)&lt;/P&gt;&lt;P&gt;or    text+2(4)&lt;/P&gt;&lt;P&gt;any sample code will helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help will be appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 10:25:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T10:25:20Z</dc:date>
    <item>
      <title>strings offset and lengths</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645035#M877765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im always confused when it comes to string and offset and length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is means when we write 2(4)&lt;/P&gt;&lt;P&gt;or    text+2(4)&lt;/P&gt;&lt;P&gt;any sample code will helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help will be appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645035#M877765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: strings offset and lengths</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645036#M877766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;+2 is the offset and 4 is the length. But reading the header is seems you know this. so what exactly is your problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645036#M877766</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-04-16T10:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: strings offset and lengths</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645037#M877767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test(18) type c value 'this is for test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ test+0(4).&lt;/P&gt;&lt;P&gt;write:/  test+5(2) .&lt;/P&gt;&lt;P&gt;write:/  test+8(3) .&lt;/P&gt;&lt;P&gt;write:/  test+12(4) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:36:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645037#M877767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: strings offset and lengths</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645038#M877768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  ZTEST_OFFSET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: text(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text = 'this is test'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write 2(4) 'Test'.  "this will start from second charcter position, and writes up to 4 chars length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ text+2(4) . "this will start from the position 1, and writes only 4 chars starting from position 2 in the string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645038#M877768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: strings offset and lengths</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645039#M877769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using text&lt;EM&gt;2(4), it will print the values starting from 2 position to 4 characters. EX: if you have string  SAPSDN it will print PSDN using write : text&lt;/EM&gt;2(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strings-offset-and-lengths/m-p/3645039#M877769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:40:24Z</dc:date>
    </item>
  </channel>
</rss>

