| 
| integer function  | index_ofs (string, start, substr) | 
|   | 
Definition at line 124 of file dc_string.f90.
 
◆ index_ofs()
  
  
      
        
          | integer function dc_string::index_ofs::index_ofs  | 
          ( | 
          character(len = *), intent(in)  | 
          string,  | 
         
        
           | 
           | 
          integer, intent(in)  | 
          start,  | 
         
        
           | 
           | 
          character(len = *), intent(in)  | 
          substr  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
private   | 
  
 
Definition at line 1243 of file dc_string.f90.
 1249     character(len = *), 
intent(in):: 
string  1250     integer, 
intent(in):: start
  1251     character(len = *), 
intent(in):: substr
  1257     result = index(
string(start: ), substr)
  1258     if (result == 0) 
return  1259     result = start + result - 1
 integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ 
 
 
 
 
The documentation for this interface was generated from the following file: