How to extract data from message using serial port in C#How do I calculate someone's age in C#?How do you give a C# Auto-Property a default value?How do I enumerate an enum in C#?How to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?Proper use of the IDisposable interfaceHow do I update the GUI from another thread?Get int value from enum in C#How to loop through all enum values in C#?how to create listener for incoming messages for serial port
Converting 3x7 to a 1x7. Is it possible with only existing parts?
Arcane Tradition and Cost Efficiency: Learn spells on level-up, or learn them from scrolls/spellbooks?
How to know whether to write accidentals as sharps or flats?
Why not make one big CPU core?
Is fission/fusion to iron the most efficient way to convert mass to energy?
Difference between "drift" and "wander"
Will users know a CardView is clickable
How to search for Android apps without ads?
A Tale of Snake and Coffee
Why can't we feel the Earth's revolution?
Cant bend fingertip when finger is straight
What is the difference between state-based effects and effects on the stack?
Manager wants to hire me; HR does not. How to proceed?
Does an African-American baby born in Youngstown, Ohio have a higher infant mortality rate than a baby born in Iran?
How can religions without a hell discourage evil-doing?
Someone who is granted access to information but not expected to read it
Can an escape pod land on Earth from orbit and not be immediately detected?
Bullying by school - Submitted PhD thesis but not allowed to proceed to viva until change to new supervisor
Can a 40amp breaker be used safely and without issue with a 40amp device on 6AWG wire?
How to make a villain when your PCs are villains?
Struggling to present results from long papers in short time slots
New Site Design!
Can I appeal credit ding if ex-wife is responsible for paying mortgage?
100-doors puzzle
How to extract data from message using serial port in C#
How do I calculate someone's age in C#?How do you give a C# Auto-Property a default value?How do I enumerate an enum in C#?How to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?Proper use of the IDisposable interfaceHow do I update the GUI from another thread?Get int value from enum in C#How to loop through all enum values in C#?how to create listener for incoming messages for serial port
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a project that read message from serial port adn respond some messages .I have this message:
"+CMGL: 3,"REC READ","+905444444411","","15/03/17,11:17:11+08"rn#2220 #*5491111111*rnrnOKrn"
I want to exctract +905444444411 and 5491111111 and 2220 from this message .
How can I do this.
c# tcp serial-port
|
show 2 more comments
I have a project that read message from serial port adn respond some messages .I have this message:
"+CMGL: 3,"REC READ","+905444444411","","15/03/17,11:17:11+08"rn#2220 #*5491111111*rnrnOKrn"
I want to exctract +905444444411 and 5491111111 and 2220 from this message .
How can I do this.
c# tcp serial-port
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02
|
show 2 more comments
I have a project that read message from serial port adn respond some messages .I have this message:
"+CMGL: 3,"REC READ","+905444444411","","15/03/17,11:17:11+08"rn#2220 #*5491111111*rnrnOKrn"
I want to exctract +905444444411 and 5491111111 and 2220 from this message .
How can I do this.
c# tcp serial-port
I have a project that read message from serial port adn respond some messages .I have this message:
"+CMGL: 3,"REC READ","+905444444411","","15/03/17,11:17:11+08"rn#2220 #*5491111111*rnrnOKrn"
I want to exctract +905444444411 and 5491111111 and 2220 from this message .
How can I do this.
c# tcp serial-port
c# tcp serial-port
edited Mar 25 at 2:43
Cœur
20.5k10119162
20.5k10119162
asked Mar 17 '15 at 12:53
mehmetmehmet
4117
4117
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02
|
show 2 more comments
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02
|
show 2 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f29099599%2fhow-to-extract-data-from-message-using-serial-port-in-c-sharp%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f29099599%2fhow-to-extract-data-from-message-using-serial-port-in-c-sharp%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you should use regex for this
– Vajura
Mar 17 '15 at 12:54
Google regex. The C# class is System.Text.RegularExpressions.Regex.
– James R.
Mar 17 '15 at 12:58
may you gime me an example..
– mehmet
Mar 17 '15 at 12:58
Could write you an example, but it would just be repeating the thousands, if not millions, you could find with a couple of google searches.
– James R.
Mar 17 '15 at 13:00
One more hint, I like using regexpal when I need to create a new expression like this.
– James R.
Mar 17 '15 at 13:02