<?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 Re: ENTER A STRING AND RETURN AN INT in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945504#M22355</link>
    <description>&lt;BR /&gt;btw Lawrence was on a right track (imho), again I prefer to calculate rather then decide. For example:&lt;BR /&gt;&lt;BR /&gt;$original_string = p1&lt;BR /&gt;$string = f$extr(0,2, original_string+" ")&lt;BR /&gt;$list = "C C#D D#E F F# G G# A A#B "&lt;BR /&gt;$integer_var=f$locate(string,list)/2&lt;BR /&gt;$show symb integer_var&lt;BR /&gt;&lt;BR /&gt;of course this solution suffers from 'false positive's.&lt;BR /&gt;Looking for a bad string like #E will result in the value for D#.&lt;BR /&gt;&lt;BR /&gt;The pre and/or post-pending of a known string will solve that. For further robustness add an F$EDIT with UPCASE and/or TRIM&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 07 Dec 2005 23:09:32 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2005-12-07T23:09:32Z</dc:date>
    <item>
      <title>ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945498#M22349</link>
      <description>I want to know how can I enter 12 strings:&lt;BR /&gt;1.- "C"&lt;BR /&gt;2.- "C#"&lt;BR /&gt;3.- "D"&lt;BR /&gt;4.- "D#"&lt;BR /&gt;5.- "E"&lt;BR /&gt;6.- "F"&lt;BR /&gt;7.- "F#"&lt;BR /&gt;8.- "G"&lt;BR /&gt;9.- "G#"&lt;BR /&gt;10.- "A"&lt;BR /&gt;11.- "A#"&lt;BR /&gt;12.- "B"&lt;BR /&gt;&lt;BR /&gt;And return a number for each one:&lt;BR /&gt;if it is "C" returns  0.&lt;BR /&gt;If it is "C#" returns 1.&lt;BR /&gt;If it is "D" returns  2.&lt;BR /&gt;&lt;BR /&gt;and so on...&lt;BR /&gt;&lt;BR /&gt;Could you help me?</description>
      <pubDate>Wed, 07 Dec 2005 18:34:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945498#M22349</guid>
      <dc:creator>Martin Devek</dc:creator>
      <dc:date>2005-12-07T18:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945499#M22350</link>
      <description>Martin,&lt;BR /&gt;if you want it to be done inside DCL,&lt;BR /&gt;You can use f$element lexical function&lt;BR /&gt;&lt;BR /&gt;I have pasted one example of using f$element lexical ...., you can go thru this and modify as per your rek.&lt;BR /&gt;&lt;BR /&gt;months="JAN/FEB/MAR/APR/MAY/JUN/JUL/AUG/SEP/OCT/NOV/DEC"&lt;BR /&gt;$ i=0&lt;BR /&gt;$LOOP:&lt;BR /&gt;$ IF F$ELEMENT(I, months) .EQS. mm THEN GOTO ENDLOOP&lt;BR /&gt;$ IF I .LE. 11 THEN&lt;BR /&gt;$ I = I+1&lt;BR /&gt;$ GOTO LOOP&lt;BR /&gt;$ ELSE&lt;BR /&gt;$ WRITE SYS$OUTPUT "Invalid month"&lt;BR /&gt;$ GOTO ENDLOOP&lt;BR /&gt;$ ENDIF&lt;BR /&gt;$ ENDLOOP&lt;BR /&gt;&lt;BR /&gt;Archunan&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2005 19:51:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945499#M22350</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-12-07T19:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945500#M22351</link>
      <description>Martin:&lt;BR /&gt;If you make all the list strings the same number of characters you can use lexical F$LOCATE.&lt;BR /&gt;length=F$LENGTH(original_string)&lt;BR /&gt;IF length .eq. 1&lt;BR /&gt;THEN &lt;BR /&gt;  string=original_string+" "&lt;BR /&gt;ELSE&lt;BR /&gt;  string=original_string&lt;BR /&gt;ENDIF&lt;BR /&gt;list="C C#D D#E F F# G G# A A#B "&lt;BR /&gt;integer_var=f$locate(string,list)/2)&lt;BR /&gt;Lawrence</description>
      <pubDate>Wed, 07 Dec 2005 19:56:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945500#M22351</guid>
      <dc:creator>Lawrence Czlapinski</dc:creator>
      <dc:date>2005-12-07T19:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945501#M22352</link>
      <description>Martin:&lt;BR /&gt;$!&lt;BR /&gt;$ If integer_var .eq. 24&lt;BR /&gt;$ THEN&lt;BR /&gt;$! Process error&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;$ ENDIF&lt;BR /&gt;Lawrence</description>
      <pubDate>Wed, 07 Dec 2005 20:04:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945501#M22352</guid>
      <dc:creator>Lawrence Czlapinski</dc:creator>
      <dc:date>2005-12-07T20:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945502#M22353</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;You may get more relevant responses if you specify&lt;BR /&gt;what platform you are using and what language you&lt;BR /&gt;are trying to use...&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2005 20:39:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945502#M22353</guid>
      <dc:creator>David B Sneddon</dc:creator>
      <dc:date>2005-12-07T20:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945503#M22354</link>
      <description>I wouldn't use a lookup loop with DCL, but a simple calculation:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;----------- keys.com -----------&lt;BR /&gt;&lt;BR /&gt;$ keys = ",C ,C#,D ,D#,E ,F ,F#,G ,G#,A ,A#,B "&lt;BR /&gt;$ if p1.eqs."" then exit&lt;BR /&gt;$ key = f$loc(","+p1, keys)/3&lt;BR /&gt;$ if key .lt. 12&lt;BR /&gt;$  then write sys$output "key ''p1' = ''key'"&lt;BR /&gt;$  else write sys$output "key ''p1' is invalid"&lt;BR /&gt;$endif&lt;BR /&gt;&lt;BR /&gt;----- keys.p ----------&lt;BR /&gt;&lt;BR /&gt;%keys = qw (C 0 C# 1 D 2 D# 3 E 4 F 5 F# 6 G 7 G# 8 A 9 A# 10 B 11);&lt;BR /&gt;# foreach (keys %keys) { print $i++, " $_ $keys{$_}\n"};&lt;BR /&gt;$key_name = uc (shift @ARGV);&lt;BR /&gt;$key = $keys{$key_name};&lt;BR /&gt;if (defined $key) {&lt;BR /&gt;   print "key $key_name = $key\n";&lt;BR /&gt;   } else {&lt;BR /&gt;   print "key $key_name = invalid\n";&lt;BR /&gt;   }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Solution example with DCL:&lt;BR /&gt;&lt;BR /&gt;$ @keys c&lt;BR /&gt;key C = 0&lt;BR /&gt;$ @keys D#&lt;BR /&gt;key D# = 3&lt;BR /&gt;$ @tmp x&lt;BR /&gt;key X is invalid&lt;BR /&gt;&lt;BR /&gt;Solution example with PERL&lt;BR /&gt;&lt;BR /&gt;$ perl keys.p A#&lt;BR /&gt;key A# = 10&lt;BR /&gt;$ perl keys.p d&lt;BR /&gt;key D = 2&lt;BR /&gt;$ perl keys.p x&lt;BR /&gt;key X = invalid&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2005 22:54:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945503#M22354</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-12-07T22:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945504#M22355</link>
      <description>&lt;BR /&gt;btw Lawrence was on a right track (imho), again I prefer to calculate rather then decide. For example:&lt;BR /&gt;&lt;BR /&gt;$original_string = p1&lt;BR /&gt;$string = f$extr(0,2, original_string+" ")&lt;BR /&gt;$list = "C C#D D#E F F# G G# A A#B "&lt;BR /&gt;$integer_var=f$locate(string,list)/2&lt;BR /&gt;$show symb integer_var&lt;BR /&gt;&lt;BR /&gt;of course this solution suffers from 'false positive's.&lt;BR /&gt;Looking for a bad string like #E will result in the value for D#.&lt;BR /&gt;&lt;BR /&gt;The pre and/or post-pending of a known string will solve that. For further robustness add an F$EDIT with UPCASE and/or TRIM&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Dec 2005 23:09:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945504#M22355</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-12-07T23:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945505#M22356</link>
      <description>I am so sorry. That-s to remind me! DAVE... &lt;BR /&gt;I am using C.&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Thu, 08 Dec 2005 06:54:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945505#M22356</guid>
      <dc:creator>Martin Devek</dc:creator>
      <dc:date>2005-12-08T06:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945506#M22357</link>
      <description>Martin,&lt;BR /&gt;Have a look at the C-function "strstr" or the RTL STR$POSITION.&lt;BR /&gt;Regards,&lt;BR /&gt;Kris (aka Qkcl)</description>
      <pubDate>Thu, 08 Dec 2005 07:39:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945506#M22357</guid>
      <dc:creator>Kris Clippeleyr</dc:creator>
      <dc:date>2005-12-08T07:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945507#M22358</link>
      <description>I thought that this was a lot more fun when&lt;BR /&gt;everyone was still assuming that he wanted a&lt;BR /&gt;DCL solution.  Then DS spoiled everything.</description>
      <pubDate>Thu, 08 Dec 2005 08:44:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945507#M22358</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2005-12-08T08:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945508#M22359</link>
      <description>&lt;BR /&gt;Yeah well... where the heck is the VMS component in this question.&lt;BR /&gt;Suddenly the whole problem sounds like a middle school home work excercise.&lt;BR /&gt;&lt;BR /&gt;Oh well,&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 08:52:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945508#M22359</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-12-08T08:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945509#M22360</link>
      <description>Hein: My solution with a one correction catches false positives. I was checking for the wrong end value. Better to use f$length.&lt;BR /&gt;CONSHYÂ» string="#F"&lt;BR /&gt;CONSHYÂ» original_string="#F"&lt;BR /&gt;CONSHYÂ» length=F$LENGTH(original_string)&lt;BR /&gt;CONSHYÂ» if length.eq.1 then string=original_string+" "&lt;BR /&gt;CONSHYÂ» if length.eq.2 string=original_string&lt;BR /&gt;%DCL-W-EXPSYN, invalid expression syntax - check operators and operands&lt;BR /&gt;CONSHYÂ» if length.eq.2 then string=original_string&lt;BR /&gt;CONSHYÂ» list="C C#D D#E F F#G G#A A#B "&lt;BR /&gt;CONSHYÂ» integer_var=f$locate(string,list)/2&lt;BR /&gt;CONSHYÂ» sh sym integer_var&lt;BR /&gt;  INTEGER_VAR = 12   Hex = 0000000C  Octal = 00000000014&lt;BR /&gt;CONSHYÂ» if integer_var .eq. f$length(list)/2 then write sys$output "string error&lt;BR /&gt; on ",string&lt;BR /&gt;string error on #F&lt;BR /&gt;CONSHYÂ»&lt;BR /&gt;Lawrence</description>
      <pubDate>Thu, 08 Dec 2005 14:27:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945509#M22360</guid>
      <dc:creator>Lawrence Czlapinski</dc:creator>
      <dc:date>2005-12-08T14:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945510#M22361</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;Let me do the honor that the previous posters omitted:&lt;BR /&gt;&lt;BR /&gt;Welcome to the VMS forum.&lt;BR /&gt;&lt;BR /&gt;And in case Hein is right (excuses when he and me are wrong!)&lt;BR /&gt;&lt;BR /&gt;since you happened to trip on the worlds MOST stable, MOST secure (and regrettably, best kept-secret) OS, you are cordially invited to get some better aquaintance with it.&lt;BR /&gt;Be warned: the elegance, consistency, security, stability, &amp;amp; scalability of it, will forever ruin your positive view of any other OS!&lt;BR /&gt;&lt;BR /&gt;Once again: Welcome.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Thu, 08 Dec 2005 14:34:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945510#M22361</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-12-08T14:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945511#M22362</link>
      <description>Hein: You were right. I used the wrong input value. So it is better to use a delimiter.&lt;BR /&gt;Lawrence</description>
      <pubDate>Thu, 08 Dec 2005 14:35:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945511#M22362</guid>
      <dc:creator>Lawrence Czlapinski</dc:creator>
      <dc:date>2005-12-08T14:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945512#M22363</link>
      <description>Don't forget your enharmonic synonyms!&lt;BR /&gt;&lt;BR /&gt;flats&lt;BR /&gt;C Db E Eb E...&lt;BR /&gt;&lt;BR /&gt;double sharps&lt;BR /&gt;B+C#C+D#D+...&lt;BR /&gt;&lt;BR /&gt;double flats&lt;BR /&gt;DbbDbEbbDbFb...&lt;BR /&gt;&lt;BR /&gt;Upper casing might not be such a good idea if you use "b" for "flat".&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:34:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945512#M22363</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-12-08T16:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945513#M22364</link>
      <description>strcmp</description>
      <pubDate>Thu, 08 Dec 2005 20:49:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945513#M22364</guid>
      <dc:creator>Martin Devek</dc:creator>
      <dc:date>2005-12-08T20:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945514#M22365</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;To borrow some text from Jan...&lt;BR /&gt;&lt;BR /&gt;from your Forum Profile:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;I have assigned points to 0 of 13 responses to my questions.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe you can find some time to do some assigning?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It is fully up to _YOU_ to decide how many points you&lt;BR /&gt;assign. If you consider an answer is not deserving any&lt;BR /&gt;points, you can assign 0 points, and then that answer&lt;BR /&gt;will no longer be counted as unassigned.&lt;BR /&gt;Consider, that every poster took at least the trouble&lt;BR /&gt;of posting for you!&lt;BR /&gt;&lt;BR /&gt;To easily find your streams with unassigned points,&lt;BR /&gt;click your own name somewhere, this will bring up your&lt;BR /&gt;profile. Near the bottom of that page, under the caption&lt;BR /&gt;"My Question(s)" you will find "questions or topics with&lt;BR /&gt;unassigned points", clicking that will give all, and&lt;BR /&gt;only, your questions that still have unassigned postings.&lt;BR /&gt;&lt;BR /&gt;Thanks on behalf of your Forum colleagues.&lt;BR /&gt;&lt;BR /&gt;PS. Nothing personal in this. Jan tries to post it to&lt;BR /&gt;everyone with this kind of assignment ratio in this forum.&lt;BR /&gt;If you have received a posting like this before, please do&lt;BR /&gt;not take offence, none is intended!&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on Jan.&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 22:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945514#M22365</guid>
      <dc:creator>David B Sneddon</dc:creator>
      <dc:date>2005-12-08T22:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: ENTER A STRING AND RETURN AN INT</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945515#M22366</link>
      <description>Jan,&lt;BR /&gt;&lt;BR /&gt;This thread has a sign of "this question has at least one answer that has received a rating of 8 points or better" when Martin does not assign ponits to any of the answers.&lt;BR /&gt;&lt;BR /&gt;Archunan&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 23:56:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/enter-a-string-and-return-an-int/m-p/4945515#M22366</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-12-08T23:56:23Z</dc:date>
    </item>
  </channel>
</rss>

