text parsing or automatic segmentation of text in c#
-
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
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
-
Can you give us more detail on what you are looking at?
More details? He's looking for someone to do his homework.
only two letters away from being an asset
-
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
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
-
Can you give us more detail on what you are looking at?
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#
-
More details? He's looking for someone to do his homework.
only two letters away from being an asset
dear friend not like tat i just need ur help and support.. since it is my first project
-
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
ya i'll be doing i just need help from u guys
-
ya i'll be doing i just need help from u guys
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
-
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#
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
-
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
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
-
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
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