2022. 7. 21. 16:17

C# 특정문자열로 둘러쌓인 문자열 추출

만일 문자열 중 %%...%%로 되어 있는 부분의 내용만 따로 꺼내고 싶으면 아래와 같이 하면 됨

적용 정규식 : %%([^%%]+)%%

이렇게 하고 c#의 Match.groups[1].value로 가져옴

string strFileSrc = "이것은 %%시험_111%% 문자열입니다";
MatchCollection mc = Regex.Matches(strFileSrc, "%%([^%%]+)%%");
List<string> lstrKeywordList = new List<string>();

foreach (Match match in mc)
{
	lstrKeywordList.Add(match.Groups[1].Value);
    //Console.WriteLine("단어 : {0}", match.Groups[1]);
}

 

 

 

2015. 9. 15. 16:22

간단하게 Random String 만들기

출처 : http://theeye.pe.kr/archives/1321

많은 주옥같은 함수들이 있긴 했는데 이게 제일 간편했음 ㅎㅎㅎ


-------------------------------------------------------------------------------------------------------------------------

간단하게 랜덤한 문자열을 생성해야 할때 사용할 수 있는 문자열 생성 함수 있습니다.
/**
 * 랜덤한 문자열을 원하는 길이만큼 반환합니다.
 * 
 * @param length 문자열 길이
 * @return 랜덤문자열
 */
private static String getRandomString(int length)
{
  StringBuffer buffer = new StringBuffer();
  Random random = new Random();
 
  String chars[] = 
    “a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z”.split(“,”);
 
  for (int i=0 ; i<length ; i++)
  {
    buffer.append(chars[random.nextInt(chars.length)]);
  }
  return buffer.toString();
}