求子串位置函式。STORE This is Visual FoxPro「TO x?AT(「fox」,x),AT(「is」,x,3)請講解謝謝

2021-03-27 08:15:14 字數 2897 閱讀 7764

1樓:匿名使用者

?at(「fox」,x)=0

求fox在x中出現的位置,在x這個字串中,沒有"fox",只有"fox",注意大小寫要區分,所以為0

at(「is」,x,3)=10

求「is」在x中第3次出現的位置,所以為10

vf的題 大家幫下忙啊 store space(1)+"test"+space(3) to ss

2樓:匿名使用者

數值函式:

1.絕對值和符號函式

格式:abs(《數值表示式》)

關於vf中foxpro的各項命令,希幫忙填寫說明和舉例

vf中at()函式的問題

3樓:鳳凰山遊子

at( ) 函式:返回乙個字元表示式或備註字

段在另乙個字元表達或備註欄位中首次出現的位置,從最左邊開始計數。

語法:at(csearchexpression, cexpressionsearched [, noccurrence])

引數csearchexpression :指定字元表示式,at( ) 函式將在 cexpressionsearched 中搜尋此字元表示式。

cexpressionsearched :指定在其中進行搜尋的字元表示式。

引數 cexpression 和 cexpressionsearched 都可以是任意大小的備註字段。

noccurrence :指定搜尋 csearchexpression 在 cexpressionsearched 中的第 noccurrence 次(第

一、第二、第三次等等)出現。預設情況下,at( ) 函式搜尋到 csearchexpression 首次出現 ( noccurrence=1)。使用 occurrence 引數可以搜尋 csearchexpression 在 cexpressionsearched 中其他的出現,如果引數 noccurrence 的值大於 cexpressionsearched 中包含 cexpressionsearched 的數目,at( ) 函式返回 0。

返回值型別:數值型

說明:at( ) 函式在第二個字元表示式中搜尋首次出現的第乙個字元表示式,函式返回第乙個字元表示式的首字元在第二個字元表示式中所在的位置。如果沒有搜尋到,at( ) 函式的返回值為 0。

at( ) 函式區分搜尋字元的大小寫。如果不區別搜尋字元的大小寫,可使用 atc( ) 函式。

舉例:store 'now is the time for all good men' to gcstring

store 'is the' to gcfindstring

clear

? at(gcfindstring,gcstring) && 顯示 5

store 'is' to gcfindstring

? at(gcfindstring,gcstring) && 顯示 o,區分大小寫

各位大哥大姐幫幫小妹我吧,研究好久求子串位置函式實在不會啊,這道題是這樣的

4樓:蘭馨兒

求子來串函式有兩類 at() 區分源大小寫 atc ()不區分

解法:at(<字元

表示式1>,《字元表示2> [,《數值表示式》])1)如果<1>是<2>的字串,則返回<1>的首字元在表示式2的起始位置。

?at("is",x)=3

2)若有《數值表示式》其值為n,則返回<1>在<2>中第n次出現的起始位置。

at("o","foxpro",2) 返回值為2你提供的x是不是有誤

5樓:匿名使用者

首先答bai案錯了。

應該是at(「is」du, x) =3 , at(「is」zhi, x, 3)=31, at(「the」, x)=18

at(「is」, x) 表示求 在daox中 第乙個「is」的專位屬置

at(「is」, x, 3) 表示在x中,第三個「is」的位置。

結果都能數出來。。。

foxpro 的atc()函式 和 at()有什麼作用各有什麼區別?

6樓:我愛數學

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

visual foxpro的考試用題 急用 非常感謝

7樓:匿名使用者

型、制字元bai

型(du二進zhi制)

dao 247

在c 程式中,main函式的位置

main函式的位置不固定。main函式只是說程式從這個函式開始,其他基本和一般函式一樣。只需要確保main函式裡出現的名字在之前有宣告 不需要定義 即可。比如以下形式可以 int foo 宣告並定義foo函式int main 以下形式也可以 int foo 宣告foo函式 int main int ...

C語言!編寫函式統計子字串在另字串中出現的次數 區分

include include int fun char a,char b int i,j,n1,n2,n3,n4 0 n1 strlen a n2 strlen b for i 0 idun3 0 for j 0 j 如圖所zhi示,望採納。dao。用c語言編寫輸入一字串,統計字串中各個字母出現的...

php如何獲取字串某字元的位置

stripos 返回 字串bai在另一字串中第du 一次出zhi現的位置 大小寫不 dao敏感 stristr 查詢字內符串在另一字串中第容一次出現的位置 大小寫不敏感 strpos 返回字串在另一字串中首次出現的位置 對大小寫敏感 strrchr 查詢字串在另乙個字串中最後一次出現的位置。strr...