­
C#

Quick and simple way to parse numbers in string

10:36 AM
Some times we have to pull numbers from mixed string. There are several ways to do it, so here i will indroduce some easy and quick one :) string fullSentence ="Just a sentence with numbers from 1 asd f3 234 6to10111" string numbers = Regex.Split(fullSentetnce @"\D+"); foreach(string number in numbers) { if(!string.IsNullOrEmpty(number) { int i =int.Parse(number); Console.WriteLine("{0}",i); } } Result: ...

Read More...

Unity3D

Incredible action of Unity3d !

10:11 AM
Good news for those who interesting in game development ! Unity gives away serial numbers for free for theire product including plugins for android and iOS ! Hurry up, since it will till to 8 March ! ...

Read More...

Popular Posts

Total Pageviews