delphi 单引号在字符串中使用方法

可以看delph的帮助,里面有这个问题详细说明:
A character string, also called a string literal or string constant, consists of a quoted string, a control string, or a combination of quoted and control strings. Separators can occur only within quoted strings.

A quoted string is a sequence of up to 255 characters from the extended ASCII character set, written on one line and enclosed by apostrophes. A quoted string with nothing between the apostrophes is a null string. Two sequential apostrophes in a quoted string denote a single character, namely an apostrophe. For example,

‘BORLAND‘           { BORLAND }  //字符
‘You‘‘ll see‘       { You‘ll see }     //两个‘连接在一起代表字符中的一个‘号.
‘‘‘‘                { ‘ }   同上.
‘‘                  { null string }  //空值
‘ ‘                 { a space }       //一个空格

示例:
SQL语句:  where usename like ‘%张三%‘
str1 :=‘where ‘ + FieldName + ‘ like ‘ + ‘‘‘%‘ + SearchBuffer + ‘%‘‘‘

时间: 2024-10-09 23:36:05

delphi 单引号在字符串中使用方法的相关文章

JavaScript基础 输出含有双引号/单引号的字符串

镇场诗: 清心感悟智慧语,不着世间名与利.学水处下纳百川,舍尽贡高我慢意. 学有小成返哺根,愿铸一良心博客.诚心于此写经验,愿见文者得启发.------------------------------------------ code: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=ut

把PHP的数组变成带单引号的字符串

上次做项目的时候,遇到 查询结果为 数组.因为条件原因,需要用$where['_string'] 去组合查询.进而用到把数组变成单引号的字符串.举例:查询返回的数组为: $projectcode_array = ["20130719","20130718","20130717"]; 通过 function change_to_quotes($str) { return sprintf("'%s'", $str); } $new

MySQL数据库无法使用+号连接字符串的处理方法

转自:http://www.maomao365.com/?p=10003 摘要: 下文讲述MySQL数据库,字符串连接的方法分享,如下所示:实现思路: 使用concat函数对两个字符串进行连接在MySQL数据库中,连接字符串,如果我们使用+号的话,就会出现结果"0",所以MySQL数据库,我们必须使用concat连接字符串,如下例所示: mysql >select concat('mysql','-','love') as t; 原文地址:https://www.cnblogs.

让jsoncpp支持单引号的字符串

因为开发 php-dubbo,需要配置比较多,因此引进jsoncpp作为服务器属性配置,结果发现jsoncpp只支持双引号, 因此扩展reader类,让它支持单引号 修改的函数包括: bool readString(Char c); c->'或者" bool  decodeString(Token& token, Char s); bool decodString(Token& token, Char s, std::string &decoded) bool re

Python之数据结构:字符串中的方法

一.过滤字符串 1.strip() (1)去掉行收尾不可见字符 a = ' wejifrow ' print a print a.strip() 结果: wejifrow wejifrow (2)strip([chars]) a = '**weji**frow**' print a.strip('*') 结果: weji**frow (3)lstrip([chars]) rstrip([chars]) s='* dwiefi **' print s.lstrip('*') print s.rst

字符串中的方法

1).Length:获得当前字符串中字符的个数2).ToUpper():将字符转换成大写形式3).ToLower():将字符串转换成小写形式4).Equals(lessonTwo,StringComparison.OrdinalIgnoreCase):比较两个字符串,可以忽略大小写5).Split():分割字符串,返回字符串类型的数组.6).Substring():解决字符串.在截取的时候包含要截取的那个位置.7).IndexOf():判断某个字符串在字符串中第一次出现的位置,如果没有返回-1.

java 创建string对象机制 字符串缓冲池 字符串拼接机制 字符串中intern()方法

字符串常量池:字符串常量池在方法区中 为了优化空间,为了减少在JVM中创建的字符串的数量,字符串类维护了一个字符串池,每当代码创建字符串常量时,JVM会首先检查字符串常量池.如果字符串已经存在池中,就返回池中的实例引用.如果字符串不在池中,就会实例化一个字符串并放到池中.Java能够进行这样的优化是因为字符串是不可变的,可以不用担心数据冲突进行共享.所以,在常量池中的这些字符串不会被垃圾收集器回收 1.String str = new String("hello");此时创建的2个对象

Python 字符串中 startswith()方法

Python startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False.如果参数 beg 和 end 指定值,则在指定范围内检查. str.startswith(str, beg=0,end=len(string)); #!/usr/bin/python str = "this is string example....wow!!!"; print str.startswith( 'this' ); print str.star

ognl用法 取变量时候 需要在变量前面加上# 取字符串需要用单引号包裹字符串

原文地址:https://www.cnblogs.com/classmethond/p/10398326.html