나경원 성형전 사진 대박 – 직찍·제보 | Daum 아고라
나경원 성형전 사진 대박 – 직찍·제보 | Daum 아고라. 나경원 성형 전 사진 .피부관리 1년에 1억 드릴만 하네요 자본주의 사회에서 돈만 있으면 예뻐지고 대통령 wife […]
나경원 성형전 사진 대박 – 직찍·제보 | Daum 아고라. 나경원 성형 전 사진 .피부관리 1년에 1억 드릴만 하네요 자본주의 사회에서 돈만 있으면 예뻐지고 대통령 wife […]
스페셜 올림픽 홍보인가? 정치인 나경원 홍보인가? via Reset KBS! 전국언론노동조합 KBS본부 :: 스페셜 올림픽 홍보인가? 정치인 나경원 홍보인가?. 또 다시 나경원 씨가 KBS에 출연할 예정이다. 다음 주 […]
PrintFriendly [no-reply@printfriendly.com]; 이(가) 다음 사람 대신 보냄:; test@test.co.kr 해더 분석 Sender: PrintFriendly <no-reply@printfriendly.com> Reply-To: test@test.co.kr To: test@test.co.kr From: PrintFriendly [mailto:no-reply@printfriendly.com] On Behalf Of webmaster@auctionpro.co.kr
Program that uses foreach with LINQ query [C#]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
using System; using System.Linq; class Program { static void Main() { // An unsorted string array. string[] letters = { "d", "c", "a", "b" }; // Use LINQ query syntax to sort the array alphabetically. var sorted = from letter in letters orderby letter select letter; // Loop with the foreach keyword. foreach(string value in sorted) { Console.WriteLine(value); } } } Output a b c d |
mp3 음량 맞춰주는 프로그램 다운로드 : http://mp3gain.sourceforge.net/download.php
1. 선언
|
1 2 3 |
string str = "문자을 선업합니다"; |
2. 문자열 추가
|
1 2 3 4 5 6 7 8 9 10 11 |
string str ="만세"; str = str.Insert(0,"대한민국 "); str = str.Insert(str.Length," 입니다."); Console.WriteLine(str2); //test Console.ReadLine(); //test //결과 => 대한민국 만세 입니다. string str2 =String.Concat("대","한","민","국"); //결과 대한민국 |
3. 공백처리
|
1 2 3 4 5 6 |
string str = " 대한민국 "; str = str.TrimStart(); // 앞(왼쪽)쪽 문자열 삭제 str = str.TrimEnd(); // 뒤(오른쪽)쪽 문자열 삭제 str = str.Trim(); // 양쪽 문자열 삭제 |
4.문자열 찾아서 문자열 자르기 파싱(Parsing)
|
1 2 3 4 5 6 |
IndexOf( "검색할 문자열" ); LastIndexOf( "검색할 문자열" ); Substring( 자를 위치 첨자 ); Substring( 자를 위치 첨자, 첨자에서 자를 만큼의 길이 ); |
5. Split (분리) 시키기
|
1 2 3 4 |
string str = "가,나,다,라,마"; string [] result = str.Split(','); |
6. Replace(변환)
|
1 2 3 4 |
string str = "대한민국\r\n만세"; str = str.Replace( "\r\n", "<br>" ); |
7. 인덱스(Index)로 […]
〔〕〈〉《》「」『』【】·※☆★○●◎◇◆□■△▲▽▼ →←↑↓↔〓≪≪√∵⇒⇔◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑ ▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜℡ ⓒ®①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬×÷
<link rel=”shortcut icon” href=”http://~favicon5.ico” />
SaaS(Software as a Service)는 “on-demand software”로도 불리며, 소프트웨어 및 관련 데이터는 중앙에 호스팅되고 사용자는 웹 브라우저 등의 클라이언트를 통해 접속하는 형태의 소프트웨어 전달 모델이다. 기존의 ASP를 […]
/var/qmail/control/databytes 20M 제한 20,000,000 => 20000000
[snippet id=”188″]
로봇물고기, 잠수함 닮았네 | Daum 미디어다음.
1. 데이터 연결 속성에 SQL Native Client 만 있는 경우 (로컬컴에 sqlncli.msi 설치시) 여러버전 있음 다운로드 : https://support.microsoft.com/en-us/help/2726013/download-information-about-the-sql-server-native-client-drivers-that-a PROVIDER=MSDASQL;driver={SQL Native Client};server=1.222.333.444;uid=myID;pwd=myPassword;database=myDB 2. 데이터 연결 속성에 Native […]
|
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 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Xml.Xsl; using System.Xml.XPath; using System.IO; namespace ConsoleXSLTest { class Program { static void Main(string[] args) { XmlDocument docXml = new XmlDocument(); XslCompiledTransform xslt = new XslCompiledTransform(); StringWriter stringWriter = new StringWriter(); string sDPW8 = Path.GetFileName(“DPW8.xml”); xslt.Load(Path.GetFileName(“DPW8.xsl”)); docXml = new XmlDocument(); docXml.PreserveWhitespace = false; docXml.LoadXml(sDPW8); xslt.Transform(docXml, null, stringWriter); docXml.LoadXml(stringWriter.ToString()); Console.WriteLine(docXml.OuterXml); } } } |
바로 가기 Learn to code | Codecademy. 사실 이런 코딩 사교육은 미국에서 일고 있는 거대한 코딩 열기에 비하면 곁가지에 불과하다. 무료로 코딩을 가르쳐주는 사이트 코드카데미(Codecademy.com)에서는 지난해 […]
토요일 오후 미국 캘리포니아의 스탠포드대학교내 야외카페. 여덟 살짜리 백인 소년이 과외수업을 받고 있다. 한국인 컴퓨터 프로그램 개발자인 박모씨로부터 아이폰용 앱 개발을 위한 코딩을 배우고 있는 […]
최근 과외현상은 외국어에서 프로그래밍 언어로 바뀌고 있다. :: Air Supply. 미국에서는 현재 최고의 유망직업이 SW엔지니어 ~~~
via 새해 프로그래밍 언어 배우기 열풍 : IT : 경제 : 뉴스 : 한겨레. 러시코프는 “기업 인수 때 코드를 이해하는 개발자 1명당 가치가 50만~100만달러로 평가되고 […]
Namespace nodes, child nodes, and attributes of the current node are automatically copied as well!
|
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 |
<xsl:copy-of select="expression"/> <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:variable name="header"> <tr> <th>Element</th> <th>Description</th> </tr> </xsl:variable> <xsl:template match="/"> <html> <body> <table> <xsl:copy-of select="$header" /> <xsl:for-each select="reference/record"> <tr> <xsl:if test="category='XML'"> <td><xsl:value-of select="element"/></td> <td><xsl:value-of select="description"/></td> </xsl:if> </tr> </xsl:for-each> </table> <br /> <table> <xsl:copy-of select="$header" /> <xsl:for-each select="table/record"> <tr> <xsl:if test="category='XSL'"> <td><xsl:value-of select="element"/></td> <td><xsl:value-of select="description"/></td> </xsl:if> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> |
소스 다운로드 : rollingbanner
Copyright © 2026 | WordPress Theme by MH Themes