Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: Its not that hard. I have a series of tutorials on how to make your own programming language on youtube. Just go the the youtube site and search "how to make your own pgoraming language". The series will take you from defining the syntex of your new language, through the … | |
Re: heres another way: librarys you'll need: using System.Text.RegularExpresions; code block: Regex r = new Regex("As:(.*);"); string s = (richTextBox1.Text); /*note richTextBox or TextBox*/ MatchCollection mc = r.Matches(s); MessageBox.Show(mc[0].Groups[1].Value); |
The End.