文字列


abbreviate-display-string

type: Function
arguments: abbreviate-display-string STRING LENGTH &optional PATHNAMEP
package: editor
file: builtin.l
文字列を表示幅に収まるように[...]で省略して返します。

  STRING    : 表示する文字列を指定します。
  LENGTH    : 表示幅を指定します。
  PATHNAMEP : 文字列がファイル名かどうかを指定します。
              ファイル名の場合には先頭の3文字(例:"C:/")だけ残して省略します。

使用例:
 (abbreviate-display-string "c:/xyzzy/lisp/builtin.l" 20 nil)
 => "c:/xyzzy.../builtin.l"
 (abbreviate-display-string "c:/xyzzy/lisp/builtin.l" 20 t)
 => "c:/.../lisp/builtin.l"

[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

buffer-substring

type: Function
arguments: buffer-substring FROM TO &optional BUFFER
package: editor
file: builtin.l
バッファの指定された範囲の文字列を返します。

  FROM   : 開始位置のポイント
  TO     : 終了位置のポイント
  BUFFER : バッファを指定します。
           指定がなければカレントバッファになります。

補足:
  BUFFER 引数は xyzzy 0.2.2.243 から指定可能です。

seealso: substring
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

capitalize-word

type: Function
arguments: capitalize-word &optional (ARG 1)
package: editor
file: cmds.l
前方の単語の先頭の文字を大文字に、それ以外の文字を小文字に変換します。
[ESC c]
カーソルが単語の途中にある場合は、カーソル位置の文字を大文字に、それ以
降の文字を小文字に変換します。

seealso: upcase-word
seealso: downcase-word
seealso: capitalize-region
seealso: capitalize-selection
seealso: forward-word
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

char

type: Function
arguments: char STRING INDEX
package: lisp
file: builtin.l
STRINGのINDEX番目の文字を返します。
INDEXは0を基底とします。

使用例:
  ;;; 先頭から最後まで取得する。
  (char "foo" -1) => 範囲外の値です: -1
  (char "foo" 0)  => #\f
  (char "foo" 1)  => #\o
  (char "foo" 2)  => #\o
  (char "foo" 3)  => 範囲外の値です: 3

seealso: schar
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

compare-buffer-substrings

type: Function
arguments: compare-buffer-substrings BUFFER1 START1 END1 BUFFER2 START2 END2 &optional CASE-FOLD
package: editor
file: builtin.l
BUFFER1 と BUFFER2 の指定された区間の内容が等しいか比べます。
両者の内容が与えられた区間のうち短い方の長さの間等しいとき、
戻り値の絶対値はその長さ + 1 です。
戻り値が 0 となる事はありません。

  CASE-FOLD : non-nil で、大文字・小文字を区別しません。

seealso: compare-windows
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

concat

type: Function
arguments: concat &rest SEQ
package: editor
file: misc.l
指定された文字列を連結します。

使用例:
  ;;; concatを使ってみる。
  (setq foo "It's ")            => "It's "
  (setq bar "show time!!!")     => "show time!!!"
  (concat foo bar)              => "It's show time!!!"
  (concat "It's " "show " "time!!!")
  =>"It's show time!!!"

seealso: concatenate
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

copy-string

type: Function
arguments: copy-string STRING
package: lisp
file: builtin.l
STRINGのコピーを返します。

使用例:
  ;;; 単にsetqしただけでは同じオブジェクトになっている。
  (setq foo "abc")              => "abc"
  (setq bar foo)                => "abc"
  (eq foo bar)                  => t

  ;;; コピーすると別のオブジェクトになる。
  (setq bar (copy-string foo))  => "abc"
  (eq foo bar)                  => nil

seealso: substring
seealso: copy-seq
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

decode-escape-sequence

type: Function
arguments: decode-escape-sequence STRING REGEXPP
package: editor
file: builtin.l
エスケープシーケンスをデコードします。

  STRING :デコードするエスケープシーケンス
  REGEXPP:STRING が正規表現か否かを指定します。

使用できるエスケープシーケンスは以下の通りです。
  \t     タブ
  \n     改行
  \r     復帰
  \f     改頁
  \v     垂直タブ
  \xNN   2桁までの16進数
  \XNNNN 4桁までの16進数

使用例:
  ;;; [\thoge]という6文字をデコードして5文字にする。
  "\\thoge"
  => "\\thoge"
  (decode-escape-sequence "\\thoge" nil)
  => "  hoge"
  (length "\\thoge")
  => 6
  (length (decode-escape-sequence "\\thoge" nil))
  => 5

Link: [xyzzy:04201]
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

delete-indentation

type: Function
arguments: delete-indentation &optional ARG
package: editor
file: cmds.l
インデントを削除し直前の行と連結します。[ESC ^]
連結する行とされる行は、半角スペースで区切られます。

  ARG : 連結する行を指定します。
        t   次行のインデントを削除し、現在の行に連結します。
        nil 現在の行のインデントを削除し、直前の行に連結します。

seealso: just-one-space
seealso: newline-and-indent
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

delete-last-ime-composition

type: Function
arguments: delete-last-ime-composition
package: editor
file: kanji.l
IME 変換直後であれば、直前に変換した文字列を削除します。[C-c C-d]

[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

downcase-word

type: Function
arguments: downcase-word &optional (ARG 1)
package: editor
file: cmds.l
カーソル位置から単語の末尾までを小文字に変換します。[ESC l]

seealso: upcase-word
seealso: capitalize-word
seealso: downcase-region
seealso: downcase-selection
seealso: string-downcase
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

fill-paragraph

type: Function
arguments: fill-paragraph
package: editor
file: fill.l
現在の段落を詰め込みます。[ESC q]

seealso: fill-region-as-paragraph
seealso: fill-prefix
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

ime-push-composition-string

type: Function
arguments: ime-push-composition-string &optional NODELETE
package: editor
file: kanji.l
セレクションの確定済仮名文字を非確定状態にします。[C-c C-p]

seealso: rewind-ime-composition
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

map-backslash-to-slash

type: Function
arguments: map-backslash-to-slash STRING
package: editor
file: builtin.l
文字列のバックスラッシュをスラッシュに置換して返します。

  STRING : 変換対象の文字列

使用例:
  ;;; パスを変換する。
  (map-backslash-to-slash "C:\\xyzzy\\xyzzy.exe")
  => "C:/xyzzy/xyzzy.exe"

seealso: map-slash-to-backslash
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

map-slash-to-backslash

type: Function
arguments: map-slash-to-backslash STRING
package: editor
file: builtin.l
文字列のスラッシュをバックスラッシュに置換して返します。

  STRING : 変換対象の文字列

使用例:
  ;;; パスを変換する。
  (map-slash-to-backslash "C:/xyzzy/xyzzy.exe")
  => "C:\\xyzzy\\xyzzy.exe"

seealso: map-backslash-to-slash
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

namestring

type: Function
arguments: namestring PATHNAME
package: lisp
file: builtin.l
PATHNAMEの内容に応じて適切なフルパスを返すような動きをする。与えたのがフ
ルパスでなければ、先頭に(default-directory)を補ってフルパスらしくします。
使用例:
  (default-directory)
  =>"C:/Applications/xyzzy/"

  (namestring "abc.txt")
  =>"C:/Applications/xyzzy/abc.txt"

  (namestring "Z:/zzz.txt")
  =>"Z:/zzz.txt"

seealso: file-namestring
seealso: merge-pathnames
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

nstring-capitalize

type: Function
arguments: nstring-capitalize STRING &key :start :end
package: lisp
file: builtin.l
STRING の内部の単語の先頭を大文字に、それ以外を小文字にした文字列を返します。
引数 STRING は破壊されます。

使用例:  
  (setq foo "tHis iS a pEn.")
  => "tHis iS a pEn."
  (nstring-capitalize foo)
  => "This Is A Pen."
  foo
  => "This Is A Pen."

seealso: string-capitalize
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

nstring-downcase

type: Function
arguments: nstring-downcase STRING &key :start :end
package: lisp
file: builtin.l
STRING を小文字にした文字列を返します。引数 STRING は破壊されます。

使用例:  
  (setq foo "XyZzY")
  => "XyZzY"
  (nstring-downcase foo)
  => "xyzzy"
  foo
  => "xyzzy"  

seealso: string-downcase
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

nstring-upcase

type: Function
arguments: nstring-upcase STRING &key :start :end
package: lisp
file: builtin.l
STRING を大文字にした文字列を返します。引数 STRING は破壊されます。

使用例:
  (setq foo "xyzzy")
  => "xyzzy"
  (nstring-upcase foo)
  => "XYZZY"
  foo
  => "XYZZY"

seealso: string-upcase
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

quote-string

type: Function
arguments: quote-string STRING TARGET-CHAR QUOTE-CHAR
package: editor
file: builtin.l
文字列中の特定文字の前にエスケープ文字をつけます。

  STRING      : 置換する文字列
  TARGET-CHAR : エスケープされる文字
  QUOTE-CHAR  : エスケープ文字

使用例:
  ;;;   スペースの前に'をつけます。
  (quote-string  "a b  c"  #\SPC #\')
  => "a' b' ' c"

seealso: substitute-string
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

rewind-ime-composition

type: Function
arguments: rewind-ime-composition &optional NODELETE POP
package: editor
file: kanji.l
直前に IME で変換した文字列を非確定状態に戻します。[C-c C-c]
変換直後でなければ、直前に変換した文字列を非確定状態で挿入します。

seealso: ime-push-composition-string
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

schar

type: Function
arguments: schar SIMPLE-STRING INDEX
package: lisp
file: builtin.l
SIMPLE-STRINGのINDEX番目の文字を返します。
INDEXは0を基底とします。

使用例:
  ;;; simpleでないstringでscharを使ってみる。
  (setq foo (make-vector 10 :initial-element #\a :element-type 'character :fill-pointer 3))
                        => "aaa"
  (schar foo 0)         => 不正なデータ型です: "aaa": simple-string
  (setq bar "aaa")      => "aaa"
  (schar bar 0)         => #\a

seealso: char
seealso: simple-string
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

split-string

type: Function
arguments: split-string STRING SEPARATOR &optional IGNORE-EMPTY CHAR-BAG
package: editor
file: builtin.l
文字列を指定されたセパレータ文字で分割したリストにします。
セパレータ文字は含まれません。

  STRING       : 分割する文字列を指定します。
  SEPARATOR    : セパレータ文字を指定します。
  IGNORE-EMPTY : 長さが0の文字列も(つまり、セパレータ文字が連続するような場合)
                 を許すかどうかを指定します。
  CHAR-BAG     : 分割した後の文字列の前後をトリムするための文字群を指定します。
  
使用例:
  (split-string "121,,12321" #\,)       => ("121" "12321")
  (split-string "121,,12321" #\, t)     => ("121" "" "12321")
  (split-string "121,,12321" #\, t "1") => ("2" "" "232")
  (split-string "121,,12321" #\, t "3") => ("121" "" "12321")

[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string

type: Function
arguments: string X
package: lisp
file: builtin.l
Xが文字列ならそれを返します。シンボルならその名前を返します。
文字や文字のベクタなら、それらの文字からなる文字列を返します。

使用例:
  (string "foo")
  => "foo"
  (string 'bar)
  => "bar"
  (string #\a)
  => "a"
  (string (make-vector 3 :initial-contents '(#\a #\b #\c)))
  => "abc"

seealso: symbol-name
seealso: make-sequence
seealso: format
seealso: coerce
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-capitalize

type: Function
arguments: string-capitalize STRING &key :start :end
package: lisp
file: builtin.l
STRING の内部の単語の先頭を大文字に、それ以外を小文字にした文字列を返します。
引数 STRING は保存されます。

使用例:
  (string-capitalize "xYZzY")
  => "Xyzzy"  
  (string-capitalize "tHis iS a pEn.")
  => "This Is A Pen."

seealso: nstring-capitalize
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-downcase

type: Function
arguments: string-downcase STRING &key :start :end
package: lisp
file: builtin.l
STRING を小文字にした文字列を返します。引数 STRING は保存されます。

使用例:
  (string-downcase "XyZzY")
  => "xyzzy"
  (string-downcase "XYZZY" :start 2 :end 4)
  => "XYzzY"

seealso: nstring-downcase
seealso: char-downcase
seealso: downcase-word
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-equal

type: Function
arguments: string-equal STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して等しければt、そうでなけ
ればnilを返します。

使用例:
  (string-equal "foo" "foo")
  => t
  (string-equal "foo" "Foo")
  => t

seealso: equalp
seealso: string=
seealso: string-not-equal
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-greaterp

type: Function
arguments: string-greaterp STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して「>」の条件を満たせば
一致しない文字のインデックスを、そうでなければnilを返します。

使用例:
  (string-greaterp "ac" "ab")
  => 1
  (string-greaterp "ac" "ac")
  => nil
  (string-greaterp "AC" "ab")
  => 1

seealso: string<
seealso: string>
seealso: string<=
seealso: string>=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-left-trim

type: Function
arguments: string-left-trim CHARACTER-BAG STRING
package: lisp
file: builtin.l
文字列の先頭から指定した文字群を削除します。

  STRING         : 文字列
  CHARACTGER-BAG : 削除する文字群です。
  
使用例:
  ;;;  先頭の"/"や"\"を取り除きます。
  (string-left-trim "/\\" "/foo/bar/zzz.txt/")
  => "foo/bar/zzz.txt/"

seealso: string-trim
seealso: string-right-trim
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-lessp

type: Function
arguments: string-lessp STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して「<」の条件を満たせば
一致しない文字のインデックスを、そうでなければnilを返します。

使用例:  
  (string-lessp "Aa" "ab")
  => 1
  (string-lessp "ac" "AB")
  => nil  

seealso: string<
seealso: string>
seealso: string<=
seealso: string>=
seealso: string-not-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-looking-at

type: Function
arguments: string-looking-at REGEXP STRING &key :start :end :case-fold
package: editor
file: builtin.l
STRING が、REGEXP とマッチするかを調べます。

string-match は、REGEXP が STRING のどこかにマッチすれば、その位置を返し
ますが、string-looking-at は指定された位置でマッチするかを返します。

  :start       : チェックする文字列の開始位置を指定します。
                 適正な値でないとき、戻り値は nil となります。
  :end         : チェックする文字列の終了位置を指定します。
                 適正な値でないとき、戻り値は nil となります。
  :case-fold   : ASCII 文字の大文字小文字の区別の方法を指定します。
                 REGEXP が[コンパイル済み正規表現]の場合は、:case-fold
                 指定は意味を持ちません。
        nil     - 大文字小文字を区別して検索します。
        :smart  - REGEXP に大文字が含まれていない場合、大文字小文字を区
                  別せずに検索します。
        上記以外- 大文字小文字を区別せずに検索します。

例:
  (string-looking-at "a+b" "aaab")
  => 0

  (string-looking-at "a+b" "baaab")
  => nil

  (string-looking-at "a+b" "aaab" :start 2)
  => 2

  (string-looking-at "a+b" "aaab" :start 3 :end 6)
  => nil

  (string-looking-at "a+b" "AaAAB" :case-fold :smart)
  => 0

seealso: string-match
seealso: string-matchp
seealso: looking-at
seealso: match-string
seealso: 正規表現の表記
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-match

type: Function
arguments: string-match REGEXP STRING &optional START END
package: editor
file: builtin.l
指定された文字列が正規表現に一致するかどうかを返します。

  REGEXP : 正規表現
  STRING : チェックする文字列
  START  : 文字列の開始位置
  END    : 文字列の終了位置

互換性:
  muleあり。
  Common Lispなし。

seealso: string-matchp
seealso: string-looking-at
seealso: looking-at
seealso: 正規表現の表記
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-matchp

type: Function
arguments: string-matchp REGEXP STRING &optional START END
package: editor
file: builtin.l
| string-match と string-matchp とはどこがどう
| 違うのでしょう?

p 付きの方は大文字小文字を区別しません。

seealso: string-match
seealso: string-looking-at
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-not-equal

type: Function
arguments: string-not-equal STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して等しくなければ一致しない
文字のインデックスを、そうでなければnilを返します。
string-equalの反対の機能です。

seealso: string-equal
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-not-greaterp

type: Function
arguments: string-not-greaterp STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して「<=」の条件を満たせ
ば一致しない文字のインデックスを、そうでなければnilを返します。

seealso: string<
seealso: string>
seealso: string<=
seealso: string>=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-not-lessp

type: Function
arguments: string-not-lessp STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を大文字小文字に関係なく比較して「>=」の条件を満たせ
ば一致しない文字のインデックスを、そうでなければnilを返します。

seealso: string<
seealso: string>
seealso: string<=
seealso: string>=
seealso: string-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-replace-match

type: Function
arguments: string-replace-match STRING REPLACEMENT
package: editor
file: builtin.l
string-matchで検索した結果を使って文字列の置換を行います。

  STRING      : string-matchで指定した文字列を指定します。
  REPLACEMENT : 置換する文字列を指定します。
                REPLACEには正規表現に部分\1-\9を含めることが可能です。

使用例:
  ;;; 文字列を置換してみる。
  (setq str "01356:00001:error message")
  => "01356:00001:error message"
  (when (string-match "\\([0-9]+\\):\\([0-9]+\\):\\(.*\\)" str)
    (setq str (string-replace-match str "\\1,\\3")))
  => "01356,error message"

seealso: string-match
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-right-trim

type: Function
arguments: string-right-trim CHARACTER-BAG STRING
package: lisp
file: builtin.l
文字列の末尾から指定した文字群を削除します。

  STRING         : 文字列
  CHARACTGER-BAG : 削除する文字群です。
  
使用例:
  ;;;  末尾の"/"や"\"を取り除きます。
  (string-right-trim "/\\" "/foo/bar/zzz.txt/")
  => "/foo/bar/zzz.txt"

seealso: string-trim
seealso: string-left-trim
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-trim

type: Function
arguments: string-trim CHARACTER-BAG STRING
package: lisp
file: builtin.l
文字列の前後から指定した文字群を削除します。

  STRING         : 文字列
  CHARACTGER-BAG : 削除する文字群です。
  
使用例:
  ;;;  前後の"/"や"\"を取り除きます。
  (string-trim "/\\" "/foo/bar/zzz.txt/")
  => "foo/bar/zzz.txt"

seealso: string-right-trim
seealso: string-left-trim
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string-upcase

type: Function
arguments: string-upcase STRING &key :start :end
package: lisp
file: builtin.l
STRING を大文字にした文字列を返します。引数 STRING は保存されます。

使用例:
  (string-upcase "xyzzy")
  => "XYZZY"
  (string-upcase "xyzzy" :start 2 :end 4)
  => "xyZZy"

seealso: nstring-upcase
seealso: char-upcase
seealso: upcase-word
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string/=

type: Function
arguments: string/= STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して等しくなければ一致しない文字のインデックスを、
そうでなければnilを返します。
英字の大文字と小文字は区別します。string=の反対の機能です。

seealso: string=
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string<

type: Function
arguments: string< STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して「<」の条件を満たせば一致しない文字のインデ
ックスを、そうでなければnilを返します。

使用例:
  (string< "aa" "aa")
  => nil
  (string< "aa" "ab")
  => 1

seealso: string=
seealso: string>
seealso: string<=
seealso: string>=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string<=

type: Function
arguments: string<= STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して「<=」の条件を満たせば一致しない文字のイン
デックスを、そうでなければnilを返します。

seealso: string=
seealso: string<
seealso: string>
seealso: string>=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string=

type: Function
arguments: string= STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して等しければt、そうでなければnilを返します。
英字の大文字と小文字は区別します。

使用例:
  (string= "foo" "foo")
  => t
  (string= "foo" "Foo")
  => nil
  (string= "together" "frog" :start1 1 :end1 3 :start2 2)
  => t

参考:
  case-sensitive        case-insensitive
  ----                  ----
  string=               string-equal
  string/=              string-not-equal
  string<               string-lessp
  string>               string-greaterp
  string<=              string-not-greaterp
  string>=              string-not-lessp

seealso: equal
seealso: string-equal
seealso: string/=
seealso: string>
seealso: string<
seealso: string<=
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string>

type: Function
arguments: string> STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して「>」の条件を満たせば一致しない文字のインデ
ックスを、そうでなければnilを返します。

使用例:
  (string> "ac" "ab")
  => 1
  (string> "ac" "ac")
  => nil
  (string> "AC" "ab")
  => nil

seealso: string<
seealso: string<=
seealso: string>=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

string>=

type: Function
arguments: string>= STRING1 STRING2 &key :start1 :end1 :start2 :end2
package: lisp
file: builtin.l
STRING1とSTRING2を比較して「>=」の条件を満たせば一致しない文字のイン
デックスを、そうでなければnilを返します。

seealso: string<
seealso: string>
seealso: string<=
seealso: string-lessp
seealso: string-not-lessp
seealso: string-greaterp
seealso: string-not-greaterp
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

substitute-string

type: Function
arguments: substitute-string STRING PATTERN REPLACEMENT &key :case-fold :start :end :skip :count
package: editor
file: builtin.l
文字列中の正規表現パターンを置換して返します。

  :case-fold  : nil なら大文字小文字を区別する。
                :smart なら、パターンに大文字が現れないときのみ区別しない。
                その他の場合なら大文字小文字を区別しない。                
  :start      : 開始位置。デフォルトは 0 で非負の整数
  :end        : 終了位置。デフォルトは nil で、 nil の場合は列の長さを
                指定した場合と等しい動作
  :skip       : 指定された回数マッチするまでは置換を行わない
  :count      : 置き換える最大の回数

使用例:
  ;;; 部分文字列を置換する。
  (substitute-string "Hogehoge" "ho" "pa")
  => "Hogepage"

  ;;; 大文字小文字を区別せず置換する。
  (substitute-string "Hogehoge" "ho" "pa" :case-fold t)
  => "pagepage"

  ; 正規表現・メタ文字の利用
  (substitute-string "abc123cdef" "[^0-9]*\\([0-9]+\\).*" "\\1 in \\&")
  =>"123 in abc123cdef"

seealso: replace-string
seealso: substitute
seealso: replace
seealso: quote-string
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

substring

type: Function
arguments: substring STRING START &optional END
package: lisp
file: builtin.l
指定された文字列の部分文字列を返します。
START, END に負の数値を指定すると文字列の最後からカウントします。

互換性:
  Common Lispにはなし(ただしsubseqがほぼ同等の機能)
  muleあり。

seealso: subseq
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

transpose-words

type: Function
arguments: transpose-words &optional (ARG 1)
package: editor
file: cmds.l
カーソル位置の単語を後方の単語と入れ換えます。[ESC t]

seealso: transpose-region
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]

upcase-word

type: Function
arguments: upcase-word &optional (ARG 1)
package: editor
file: cmds.l
カーソル位置から単語の末尾までを大文字に変換します。[ESC u]

seealso: downcase-word
seealso: capitalize-word
seealso: upcase-region
seealso: upcase-selection
seealso: string-upcase
[ Intro | 目次 | 索引 | 目的別 | 文字列 ]