Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. text parsing or automatic segmentation of text in c#

text parsing or automatic segmentation of text in c#

Scheduled Pinned Locked Moved C#
csharpc++jsonhelptutorial
15 Posts 7 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Colin Angus Mackay

    lawrenceinba wrote:

    guide me from begining to end

    It is your homework - How about you trying to do it then if you get stuck come back and ask for specific help.

    lawrenceinba wrote:

    a migration project in "text parsing or automatic segmentation of text"

    That is a bit on the vague side. A project title tells people very little about what it actually needs to accomplish. How about if I tell you the project title of what I'll be doing in January: "Opera Integration upgrade to version 5" - Now, what does that actually tell you?

    Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

    P Offline
    P Offline
    Pete OHanlon
    wrote on last edited by
    #6

    Colin Angus Mackay wrote:

    How about if I tell you the project title of what I'll be doing in January: "Opera Integration upgrade to version 5" - Now, what does that actually tell you?

    It tells me that you're working on a sideline project providing scaffolding for the dresses of the "waif-like" opera singers.

    "WPF has many lovers. It's a veritable porn star!" - Josh Smith

    My blog | My articles | MoXAML PowerToys

    C 1 Reply Last reply
    0
    • U User 4467139

      Can you give us more detail on what you are looking at?

      N Offline
      N Offline
      Not Active
      wrote on last edited by
      #7

      More details? He's looking for someone to do his homework.


      only two letters away from being an asset

      L 1 Reply Last reply
      0
      • P Pete OHanlon

        Colin Angus Mackay wrote:

        How about if I tell you the project title of what I'll be doing in January: "Opera Integration upgrade to version 5" - Now, what does that actually tell you?

        It tells me that you're working on a sideline project providing scaffolding for the dresses of the "waif-like" opera singers.

        "WPF has many lovers. It's a veritable porn star!" - Josh Smith

        My blog | My articles | MoXAML PowerToys

        C Offline
        C Offline
        Colin Angus Mackay
        wrote on last edited by
        #8

        Pete O'Hanlon wrote:

        It tells me that you're working on a sideline project providing scaffolding for the dresses of the "waif-like" opera singers.

        Nice try! :) But, ultimately, incorrect.

        Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

        1 Reply Last reply
        0
        • U User 4467139

          Can you give us more detail on what you are looking at?

          L Offline
          L Offline
          lawrenceinba
          wrote on last edited by
          #9

          actually set of adresses in any form will be given as input, the program has to convert it into the standardise format.. and correct spelling mistakes and delete unnecessary spaces and hashes then can u also tell me wat we should use instead of pointers in c#

          C 1 Reply Last reply
          0
          • N Not Active

            More details? He's looking for someone to do his homework.


            only two letters away from being an asset

            L Offline
            L Offline
            lawrenceinba
            wrote on last edited by
            #10

            dear friend not like tat i just need ur help and support.. since it is my first project

            1 Reply Last reply
            0
            • C Colin Angus Mackay

              lawrenceinba wrote:

              guide me from begining to end

              It is your homework - How about you trying to do it then if you get stuck come back and ask for specific help.

              lawrenceinba wrote:

              a migration project in "text parsing or automatic segmentation of text"

              That is a bit on the vague side. A project title tells people very little about what it actually needs to accomplish. How about if I tell you the project title of what I'll be doing in January: "Opera Integration upgrade to version 5" - Now, what does that actually tell you?

              Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

              L Offline
              L Offline
              lawrenceinba
              wrote on last edited by
              #11

              ya i'll be doing i just need help from u guys

              C 1 Reply Last reply
              0
              • L lawrenceinba

                ya i'll be doing i just need help from u guys

                C Offline
                C Offline
                Colin Angus Mackay
                wrote on last edited by
                #12

                Well, when you have something specific that we can help with then please let us know.

                Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

                1 Reply Last reply
                0
                • L lawrenceinba

                  actually set of adresses in any form will be given as input, the program has to convert it into the standardise format.. and correct spelling mistakes and delete unnecessary spaces and hashes then can u also tell me wat we should use instead of pointers in c#

                  C Offline
                  C Offline
                  Colin Angus Mackay
                  wrote on last edited by
                  #13

                  lawrenceinba wrote:

                  then can u also tell me wat we should use instead of pointers in c#

                  C# uses references. An instance of a class is passed as a refernce, an instance of a struct is passed by value. It is handled implicitly by the run time, you don't have to explicitly use them like you do in C++.

                  lawrenceinba wrote:

                  the program has to convert it into the standardise format

                  Step 1 is to define what you mean by "the standardised format"

                  Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

                  L 1 Reply Last reply
                  0
                  • C Colin Angus Mackay

                    lawrenceinba wrote:

                    then can u also tell me wat we should use instead of pointers in c#

                    C# uses references. An instance of a class is passed as a refernce, an instance of a struct is passed by value. It is handled implicitly by the run time, you don't have to explicitly use them like you do in C++.

                    lawrenceinba wrote:

                    the program has to convert it into the standardise format

                    Step 1 is to define what you mean by "the standardised format"

                    Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

                    L Offline
                    L Offline
                    lawrenceinba
                    wrote on last edited by
                    #14

                    standard format like this 1.house no 2. streeet name 3.city 4 district 5. country and so on also it should remove spelling mistakes..... n number of address will be passed and using hmm training we should train and make the output efficient

                    C 1 Reply Last reply
                    0
                    • L lawrenceinba

                      standard format like this 1.house no 2. streeet name 3.city 4 district 5. country and so on also it should remove spelling mistakes..... n number of address will be passed and using hmm training we should train and make the output efficient

                      C Offline
                      C Offline
                      Colin Angus Mackay
                      wrote on last edited by
                      #15

                      lawrenceinba wrote:

                      standard format like this 1.house no 2. streeet name 3.city 4 district 5. country

                      That doesn't tell anyone enough. How are the parts of the address separated from one another? Is it in XML, field length delimited, comma separated, etc.

                      lawrenceinba wrote:

                      it should remove spelling mistakes.....

                      From an address? How is it going to know that? Do you have a dictionary of approved spellings?

                      lawrenceinba wrote:

                      using hmm training we should train and make the output efficient

                      What is "hmm training"? Is that some sort of generic algorithm? Define what you mean by "efficient" output.

                      Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups