Hit Ctrl-F to bring up a find box, and type this in exactly as written:
<[A-Z]{2,}>
Hit the "More >>" button, then check the "Use Wildcards" box. Finally, click the "Reading Highlight" box, then click "Highlight All".
2016/6/7
2016/6/6
AKB48 - チャンスの順番
チャンスの順番 次 は君 に来 る
どんなに負 けてても 今度 は勝 ちに行 こう
あきらめなければ夢 は叶 うんだ
ずっと頑張 って来 た
君 の努力 報 われるように…空 を流 れる白 い雲 たちの
どれが速 いかなんて 意味 がないと思 う
昨日 の君 が出遅 れていても
そのうち風 の向 きも変 わり始 める
自分 には何 が足 りないのだろう
一 人 悩 んだ時 もあった
だけど立 ち止 まっていてもしょうがない
じゃんけんみたいに運 は巡 るもの
今 までついてなかった 今度 は君 の番 だ
くじけちゃいけない泣 いてちゃいけない
長 い冬 の後 には
君 の春 がすぐそこに来 てる
まわりの友 は 一 人 また一 人
夢 に続 く階段 上 って行 ったよ
たとえビリでも焦 ることないさ
どこかで風 が吹 いたら追 いつき追 い越 せる
途中 で誰 かと比 べるよりも
未来 の自分 信 じるんだ
君 のペースでゴールまで走 り抜 けろ!夢 の方 からは そっぽ向 かないよ
勝手 にこっちから背 を向 けてしまうもの
何 があったって その手 伸 ばすんだ
運 はがむしゃらの味方
君 にできる すべてのことをやれ!チャンスの順番 いつかきっと来 る
まだ先 のようでも確 かに近 づいてる
声 が掛 かるまで 光 当 たるまで
君 は今 まで以上 に
どんな時 も輝 いていよう
どんなに
あきらめなければ
ずっと
どれが
そのうち
だけど
じゃんけんみたいに
くじけちゃいけない
まわりの
たとえビリでも
どこかで
まだ
どんな
2016/6/4
How to count words in a PDF file with JavaScript?
Paste the follow code in JavaScript Console of Adobe Acrobat, highlight the code and then press Ctrl + Enter.
var cnt=0;
for (var p = 0; p < this.numPages; p++) cnt += getPageNumWords(p);
//console.println("There are " + cnt + " words in this file.");
app.alert("There are " + cnt + " words in this file.");
var cnt=0;
for (var p = 0; p < this.numPages; p++) cnt += getPageNumWords(p);
//console.println("There are " + cnt + " words in this file.");
app.alert("There are " + cnt + " words in this file.");
2016/6/3
How to create a list of acronyms in Microsoft Word with Macro?
Sub ListAcronyms()
Dim strAcronym As String
Dim strDefine As String
Dim strOutput As String
Dim newDoc As Document
Application.ScreenUpdating = False
Selection.HomeKey Unit:=wdStory
ActiveWindow.View.ShowHiddenText = False
'Loop to find all acronyms
Do
'Search for acronyms using wildcards
Selection.Find.ClearFormatting
With Selection.Find
.ClearFormatting
.Text = "<[A-Z]@[A-Z]>"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchCase = True
.MatchWildcards = True
.MatchWholeWord = True
.Execute
End With
'Only process if something found
If Selection.Find.Found Then
'Make a string from the selection, add it to the
'output string
strAcronym = Selection.Text
'Look for definition
Selection.MoveRight Unit:=wdWord
Selection.MoveRight Unit:=wdCharacter, _
Extend:=wdExtend
strDefine = ""
If Selection.Text = "(" Then
While Selection <> ")"
strDefine = strDefine & Selection.Text
Selection.Collapse Direction:=wdCollapseEnd
Selection.MoveRight Unit:=wdCharacter, _
Extend:=wdExtend
Wend
End If
Selection.Collapse Direction:=wdCollapseEnd
If Left(strDefine, 1) = "(" Then
strDefine = Mid(strDefine, 2, Len(strDefine))
End If
If strDefine > "" Then
'Check if the search result is in the Output string
'if it is, ignore the search result
If InStr(strOutput, strAcronym) = 0 Then
strOutput = strOutput & strAcronym _
& vbTab & strDefine & vbCr
End If
End If
End If
Loop Until Not Selection.Find.Found
'Create new document and change active document
Set newDoc = Documents.Add
'Insert the text
Selection.TypeText Text:=strOutput
'Sort it
newDoc.Content.Sort SortOrder:=wdSortOrderAscending
Application.ScreenUpdating = True
Selection.HomeKey Unit:=wdStory
End Sub
訂閱:
文章 (Atom)