1樓:★和平海
atc()返回一個字元表示式或備註欄位在另一個字元表示式或備註欄位中首次出現的位置,此函式不區分字元大小寫。
at()函式區分搜尋字元的大小寫。
如:? atc( 'abc' , '1234abcde' ) && 顯示 5
? atc( 'is', 'now is the time for all good men ... ') && 顯示 5
? atc('now','now is the time for all good men ... ') && displays 1
? at( 'is the' ,'now is the time for all good men' ) && 顯示 5
? at('is' ,'now is the time for all good men' ) && 顯示 0, 區分大小寫
at(csearchexpression, cexpressionsearched [, noccurrence])
引數csearchexpression
指定用於在 cexpressionsearched 中進行搜尋的字元表示式 cexpressionsearched
指定在其中進行搜尋的字元表示式。
csearchexpression 和 cexpressionsearched 可以是任意大小的備註欄位。
noccurrence指定搜尋 csearchexpression 在 cexpressionsearched 中的第 noccurrence 次(第
一、第二、第三次等等)出現。預設情況下,at( ) 函式搜尋到 csearchexpression 首次出現 ( noccurrence=1)。
atc(csearchexpression, cexpressionsearched [, noccurrence])
引數csearchexpression
指定字元表示式,atc( ) 函式將在 cexpressionsearched 中搜尋此字元表示式。
cexpressionsearched指定在其中搜尋 csearchexpression 的字元表示式。
引數 csearchexpression 和 cexpressionsearched 都可以是任意大小的備註欄位。
noccurrence指定搜尋 csearchexpression 在 cexpressionsearched 中的第 noccurrence 次出現(第
一、第二、第三次等等)。預設情況下,atc( ) 函式搜尋 csearchexpression 的首次出現 ( noccurrence=1)。使用引數 occurrence 可以在 cexpressionsearched 中搜尋 csearchexpression 的其他出現。
2樓:匿名使用者
at(字元表示式1,字元表示式2)
查詢字串1在字串2中出現的位置。
返回值 是數值型。
3樓:匿名使用者
at 在一個字元表示式中查詢另一個字元表示式出現的位置。 區分大小寫atc和at功能一樣,但是它不區分大小寫如at('b','abc')返回位置2
vfp中at()函式怎麼用????
4樓:匿名使用者
at()是測試前面字串在後面字串中出現的位置,如:
?at("cd","abcdef")
結果為3,因為"cd"是在後面的字串的第3個位置出現的另,?at("cd","abcdefabcdef",2)結果為9,後面多了一個引數2,就是測試第2次出現的位置
5樓:帶書
找子字串at
格式:at(〈字元表示式1〉,〈字元表示式2〉)功能:求〈字元表示式1〉在〈字元表示式2〉的起始位置數值。
說明:①若〈字元表示式2〉中不包含〈字元表示式1〉,則函式值為零;
②若〈字元表示式2〉的值含有兩個以上的〈字元表示式1〉的值,則函式給出第一個值的位置。
③大小寫字母在檢索中視為不同。
vfp中「at()」是什麼意思?
6樓:
找子字元出現位置的函式 at()
格式:at(〈字元表示式1〉,〈字元表示式2〉[,n])功能:求〈字元表示式1〉在〈字元表示式2〉中第n次出現的位置,結果是數值型。
說明:①若〈字元表示式2〉中不包含〈字元表示式1〉,則函式值為零;
②若省略[,n]則函式給出《串1>在《串2>中第一次出現的位置。
例:?at("a","abcabc",2),at("a","abcabc",3),at("a","abcabc")
4 0 1
foxpro 的atc()函式 和 at()有什麼作用各有什麼區別?
7樓:我愛數學
at():求字元
串中子字串的起始位置,區分大小
寫。store 'now is the time for all good men' to gcstring
store 'is the' to gcfindstring
clear
? at(gcfindstring,gcstring) && displays 5
store 'is' to gcfindstring
? at(gcfindstring,gcstring) && displays 0, case-sensitive
atc():求字串專中子字串的起始位置屬,不區分大小寫。
store 'now is the time for all good men ... ' to gcstring
store 'is the' to gcfindstring
clear
? atc(gcfindstring, gcstring) && displays 5
store 'is' to gcfindstring
? atc(gcfindstring, gcstring) && displays 5
? atc('now',gcstring) && displays 1
vfp上的at()函式是怎麼用的,最好用例題講
8樓:大槐樹下
字串首位置函式
at("aa","abcaa")
4 可試一下
vf中at函式怎麼用
9樓:匿名使用者
在字串a裡查詢字串b出現的第n次的位置:
at(字串b,字串a,n)
省略n就是預設第一次出現的位置
比如at('a','reatad',2) 結果是5幫助詳細:
vf中求子串出現次數函式時at和atc和occurs命令有什麼區別?
10樓:
at和atc求子串在主串中出現的位置, at:1個全形字元計2個字元, atc:1個全形字元也計1個字元
occurs求子串在主串中出現的次數
在VFP中是什麼意思在VFP中符號是什麼意思?
操作符 示例 請參閱 返回值型別 真 t.如果一個串包含於另一串中返回真 t.否則,返回假 f.語法csearchfor csearchin返回值型別 logical 引數csearchfor 指定要在 csearchin 中查詢的字元表示式。csearchin 指定要在其中查詢是否包含 csear...
vf中是什麼意思,在VFP中符號是什麼意思
a包含於b 是子復串包含測試 字元制型表示式 字元型表示式2 如果左字串是右字串的一個子串,則結果為邏輯真 t.否則為邏輯假 f.若果容易記混淆的話 可以通俗的理解 為 屬於 a b 為a屬於b 反正我是這樣理解的啦,看你怎麼理解,見仁見智啦 字串包含測試 只能用於字元型資料 不能誤到哈 所以我不給...
VFP中什麼時候如何使用巨集替換,VF中的巨集替換是什麼怎麼用
當需要把字串定界符去掉的時候,就需要巨集替換。如 a 學生 命令後的表名不需要定界符引號,a相當於把a的值 學生 引號去除。在需要引用引號bai內的數du據時,需要使用巨集zhi替換,如 daoxm 姓名 xm 張三 還有x 123 x 100就是錯 專誤的 字元型屬與數值型不能相加 而 x 100...