代码搜索:StringTest
找到约 144 项符合「StringTest」的源代码
代码结果 144
www.eeworm.com/read/331534/3410264
svn-base utf8stringtest.cpp.svn-base
//
// UTF8StringTest.cpp
//
// $Id: //poco/1.3/Foundation/testsuite/src/UTF8StringTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
www.eeworm.com/read/331534/3410324
svn-base utf8stringtest.h.svn-base
//
// UTF8StringTest.h
//
// $Id: //poco/1.3/Foundation/testsuite/src/UTF8StringTest.h#1 $
//
// Definition of the UTF8StringTest class.
//
// Copyright (c) 2007, Applied Informatics Software E
www.eeworm.com/read/430096/8766979
java stringcompare.java
// operators/StringCompare.java
// TIJ4 Chapter Operators, Exercise 14, page 133
/* Write a method that takes two String arguments uses all the boolean
* comparisons to compare the two Stings and p
www.eeworm.com/read/284875/8885634
sql 40-substring.sql
DECLARE @StringTest char(10)
SET @StringTest = 'Robin '
SELECT SUBSTRING(@StringTest,3,LEN(@StringTest))
www.eeworm.com/read/284875/8885690
sql 34-lower.sql
DECLARE @StringTest char(10)
SET @StringTest = 'Robin '
SELECT LOWER(LEFT(@StringTest,3))
www.eeworm.com/read/284875/8885714
sql 37-rtrim.sql
DECLARE @StringTest char(10)
SET @StringTest = 'Robin'
SELECT @StringTest+'-End',RTRIM(@StringTest)+'-End'
www.eeworm.com/read/284875/8885766
sql 35-ltrim.sql
DECLARE @StringTest char(10)
SET @StringTest = ' Robin'
SELECT 'Start-'+LTRIM(@StringTest),'Start-'+@StringTest
www.eeworm.com/read/284875/8885838
sql 31-char.sql
DECLARE @StringTest char(10)
SET @StringTest = ASCII('Robin ')
SELECT CHAR(@StringTest)
www.eeworm.com/read/281848/9130219
java stringcompare.java
// operators/StringCompare.java
// TIJ4 Chapter Operators, Exercise 14, page 133
/* Write a method that takes two String arguments uses all the boolean
* comparisons to compare the two Stings and p
www.eeworm.com/read/353439/10446939
java stringcompare.java
// operators/StringCompare.java
// TIJ4 Chapter Operators, Exercise 14, page 133
/* Write a method that takes two String arguments uses all the boolean
* comparisons to compare the two Stings and p