https://qiita.com/STONEBKIMTAEHO/items/2141b1c7ed5d149df...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2018년 11월 29일 목요일
2018년 11월 12일 월요일
Android Aspectj 로 로그 정성껏 출력해보기.. 머래...
import android.content.ContentValues;
import android.content.Context;
import android.graphics.Bitmap;
import android.os.Debug;
import android.os.Environment;
import android.support.annotation.NonNull;
import android.util.Log;
import android.view.View;
import com.afwsamples.testdpc.Application;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import...
2018년 11월 11일 일요일
powershell 에서 문자열 찾기
By schoolhompy at 11월 11, 2018
No comments
(get-content "C:\w\test.txt - 리스트파일") | foreach-object { get-childitem 폴더 -recurse -include *.* | select-string -pattern "$_"; echo "WORD : $_"; } > result.txt
파일에서 매치되는 것만 모아서 카운트세기
(get-content "C:\w\test3000.txt") | foreach-object { $mesure = (get-childitem JP-Subtitles -recurse -include *.* | select-string -pattern "$_" -AllMatches); $mesureCount=$mesure.Matches.Count; echo "WORD : $_ ...