4월, 2017의 게시물 표시

c# 정규식(RegularExpressions)

이미지
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 using   System ; using   System .Collections.Generic; using   System .Text; using   System .Threading.Tasks; using   System .Text.RegularExpressions;   namespace  ConsoleApplication8 {      class  Program     {          static   void  Main( string [] args)         {              /***************************************************/         ...

C# 정규식(Regular Expression)

C#  정규식  기호표  (Regular Expression) Pattern Matching Criterion Example + 앞의   글자에   연달아서 ,  뒤에   글자가   붙어서   따라 오는경우 to+  는  too, tooo  처럼 to 뒤에   어떤것이   오는경우 * 바로   앞의   글자가   없거나 ,  또는   바로앞글자가 있고   뒤에   글자가   따라올때 to*  는  t, to, too  처럼   바로앞의   글자생략까지 포함 ? 바로   앞의   글자가   없거나   있는경우 te?n  는  ten or tn  임 . teen 은   포함   안됨 {n} n 의수 ( 입력된   숫자 ) 만큼   정확하게   앞글자를 반복한다 . te{2}n  은  teen 이다 .  ten  이나  teeen  은 포함안됨 {n,} n 의수 ( 입력된   숫자 )  이하   만큼   반복   해준다 te{1,}n  은  ten  이나  teen  이다 .  tn 은 포함안됨 . {n,m}  n  과  m  사이의수 ( 입력한   두수의   차이 ) 만큼   앞 글자를   반복 te{1,2}n  은  ten  이나  teen  이다 \ 슬래쉬...

[c#] Dictionary practice3

이미지
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 using   System ; using   System .Collections.Generic; using   System .Text; using   System .Threading.Tasks; namespace  ConsoleApplication8 {      class  Program     {          static   void  Main( string [] args)         {              Dictionary < string ,  int >  moneyInfo  =   new   Dictionary < string ,  int > ();          ...