Results 1 to 1 of 1

Thread: Entity Numbers Convert / vb.net line number test

Threaded View

  1. #1

    Thread Starter
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Entity Numbers Convert / vb.net line number test

    Before Editing Post
    Code:
    Character 	Entity Number 	Entity Name 	Description
    " 		" 		" 		quotation mark
    ' 		' 		' 		apostrophe 
    & 		& 		& 		ampersand
    < 		&#60; 		&lt; 		less-than
    > 		&#62; 		&gt; 		greater-than
    HTML Code:
    Character 	Entity Number 	Entity Name 	Description
    " 		&#34; 		&quot; 		quotation mark
    ' 		&#39; 		&apos; 		apostrophe 
    & 		&#38; 		&amp; 		ampersand
    < 		&#60; 		&lt; 		less-than
    > 		&#62; 		&gt; 		greater-than
    PHP Code:
    Character     Entity Number     Entity Name     Description
    "         "         &quot;         quotation mark
    '         '         &apos;         apostrophe 
    &         &         &amp;         ampersand
    <         <         &lt;         less-than
    >         >         &gt;         greater-than 
    vb.net Code:
    1. Character   Entity Number   Entity Name     Description
    2. "       "       &quot;      quotation mark
    3. '       '       &apos;      apostrophe
    4. &       &       &amp;       ampersand
    5. <       <       &lt;        less-than
    6. >       >       &gt;        greater-than

    After Editing Post
    Code:
    Character 	Entity Number 	Entity Name 	Description
    " 		" 		&quot; 		quotation mark
    ' 		' 		&apos; 		apostrophe 
    & 		& 		&amp; 		ampersand
    < 		< 		&lt; 		less-than
    > 		> 		&gt; 		greater-than
    HTML Code:
    Character 	Entity Number 	Entity Name 	Description
    " 		" 		&quot; 		quotation mark
    ' 		' 		&apos; 		apostrophe 
    & 		& 		&amp; 		ampersand
    < 		< 		&lt; 		less-than
    > 		> 		&gt; 		greater-than
    PHP Code:
    Character     Entity Number     Entity Name     Description
    "         "         &quot;         quotation mark
    '         '         &apos;         apostrophe 
    &         &         &amp;         ampersand
    <         <         &lt;         less-than
    >         >         &gt;         greater-than 
    vb.net Code:
    1. Character   Entity Number   Entity Name     Description
    2. "       "       &quot;      quotation mark
    3. '       '       &apos;      apostrophe
    4. &       &       &amp;       ampersand
    5. <       <       &lt;        less-than
    6. >       >       &gt;        greater-than

    Test 2 digit line numbers....
    vb.net Code:
    1. For i As Integer = 0 To threadPosts.Count - 1
    2.     With threadPosts(i)
    3.         SB.AppendLine("Title: " & .Title)
    4.         SB.AppendLine("URL: " & threadBaseURL & .URL_ID)
    5.         SB.AppendLine("Started by: " & .Poster & ", " & .PosterDate)
    6.         SB.AppendLine("Views: " & .Views)
    7.         SB.AppendLine("Replies: " & .Replies)
    8.         SB.AppendLine("Last reply by: " & .LastReplyBy & ", " & .LastReplyDate)
    9.         SB.AppendLine("--------------------------------------------------------------------------")
    10.     End With
    11. Next
    Last edited by Edgemeal; Aug 3rd, 2012 at 06:32 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width