string.md 13.5 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
# String

String 全局对象是一个用于字符串或一个字符序列的构造函数。

字符串字面量采取以下形式:

```ts
'string text'
"string text"
"中文/汉语"
"español"
"English "
"हिन्दी"
"العربية"
"português"
"বাংলা"
"русский"
"日本語"
"ਪੰਜਾਬੀ"
"한국어"
```

## 实例属性


### length

<!-- UTSJSON.String.length.description -->

<!-- UTSJSON.String.length.param -->

<!-- UTSJSON.String.length.returnValue -->

M
mahaifeng 已提交
34
<!-- UTSJSON.String.length.test -->
D
DCloud_LXH 已提交
35 36 37 38 39 40

<!-- UTSJSON.String.length.compatibility -->


## 实例方法

D
DCloud_LXH 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

### toString()

<!-- UTSJSON.String.toString.description -->

<!-- UTSJSON.String.toString.param -->

<!-- UTSJSON.String.toString.returnValue -->

<!-- UTSJSON.String.toString.test -->

<!-- UTSJSON.String.toString.compatibility -->

<!-- UTSJSON.String.toString.tutorial -->

D
DCloud_LXH 已提交
56 57 58 59 60 61 62 63
### includes(searchString, position?)

<!-- UTSJSON.String.includes.description -->

<!-- UTSJSON.String.includes.param -->

<!-- UTSJSON.String.includes.returnValue -->

M
mahaifeng 已提交
64
<!-- UTSJSON.String.includes.test -->
D
DCloud_LXH 已提交
65 66 67 68 69 70 71 72 73 74 75

<!-- UTSJSON.String.includes.compatibility -->

### endsWith(searchString, endPosition?)

<!-- UTSJSON.String.endsWith.description -->

<!-- UTSJSON.String.endsWith.param -->

<!-- UTSJSON.String.endsWith.returnValue -->

M
mahaifeng 已提交
76
<!-- UTSJSON.String.endsWith.test -->
D
DCloud_LXH 已提交
77 78 79 80 81 82 83 84 85 86 87

<!-- UTSJSON.String.endsWith.compatibility -->

### repeat(count)

<!-- UTSJSON.String.repeat.description -->

<!-- UTSJSON.String.repeat.param -->

<!-- UTSJSON.String.repeat.returnValue -->

M
mahaifeng 已提交
88
<!-- UTSJSON.String.repeat.test -->
D
DCloud_LXH 已提交
89 90 91 92 93 94 95 96 97 98 99

<!-- UTSJSON.String.repeat.compatibility -->

### startsWith(searchString, position?)

<!-- UTSJSON.String.startsWith.description -->

<!-- UTSJSON.String.startsWith.param -->

<!-- UTSJSON.String.startsWith.returnValue -->

M
mahaifeng 已提交
100 101
<!-- UTSJSON.String.startsWith.test -->

D
DCloud_LXH 已提交
102 103 104 105 106 107 108 109 110 111
<!-- UTSJSON.String.startsWith.compatibility -->

### at(index)

<!-- UTSJSON.String.at.description -->

<!-- UTSJSON.String.at.param -->

<!-- UTSJSON.String.at.returnValue -->

M
mahaifeng 已提交
112
<!-- UTSJSON.String.at.test -->
D
DCloud_LXH 已提交
113 114 115 116 117 118 119 120 121 122 123

<!-- UTSJSON.String.at.compatibility -->

### charAt(pos)

<!-- UTSJSON.String.charAt.description -->

<!-- UTSJSON.String.charAt.param -->

<!-- UTSJSON.String.charAt.returnValue -->

M
mahaifeng 已提交
124
<!-- UTSJSON.String.charAt.test -->
D
DCloud_LXH 已提交
125 126 127 128 129 130 131 132 133 134 135

<!-- UTSJSON.String.charAt.compatibility -->

### charCodeAt(index)

<!-- UTSJSON.String.charCodeAt.description -->

<!-- UTSJSON.String.charCodeAt.param -->

<!-- UTSJSON.String.charCodeAt.returnValue -->

M
mahaifeng 已提交
136
<!-- UTSJSON.String.charCodeAt.test -->
D
DCloud_LXH 已提交
137 138 139

<!-- UTSJSON.String.charCodeAt.compatibility -->

杜庆泉's avatar
杜庆泉 已提交
140 141


D
DCloud_LXH 已提交
142
### concat(...strings)
D
DCloud_LXH 已提交
143 144 145 146 147 148 149

<!-- UTSJSON.String.concat.description -->

<!-- UTSJSON.String.concat.param -->

<!-- UTSJSON.String.concat.returnValue -->

M
mahaifeng 已提交
150
<!-- UTSJSON.String.concat.test -->
D
DCloud_LXH 已提交
151 152 153 154 155 156 157 158 159 160 161

<!-- UTSJSON.String.concat.compatibility -->

### indexOf(searchString, position?)

<!-- UTSJSON.String.indexOf.description -->

<!-- UTSJSON.String.indexOf.param -->

<!-- UTSJSON.String.indexOf.returnValue -->

M
mahaifeng 已提交
162
<!-- UTSJSON.String.indexOf.test -->
D
DCloud_LXH 已提交
163 164 165 166 167 168 169 170 171 172 173

<!-- UTSJSON.String.indexOf.compatibility -->

### lastIndexOf(searchString, position?)

<!-- UTSJSON.String.lastIndexOf.description -->

<!-- UTSJSON.String.lastIndexOf.param -->

<!-- UTSJSON.String.lastIndexOf.returnValue -->

M
mahaifeng 已提交
174 175
<!-- UTSJSON.String.lastIndexOf.test -->

D
DCloud_LXH 已提交
176 177
<!-- UTSJSON.String.lastIndexOf.compatibility -->

D
DCloud_LXH 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191
### localeCompare(that)

<!-- UTSJSON.String.localeCompare.description -->

<!-- UTSJSON.String.localeCompare.param -->

<!-- UTSJSON.String.localeCompare.returnValue -->

<!-- UTSJSON.String.localeCompare.test -->

<!-- UTSJSON.String.localeCompare.compatibility -->

<!-- UTSJSON.String.localeCompare.tutorial -->

杜庆泉's avatar
杜庆泉 已提交
192 193 194 195 196 197 198 199
### match(regexp : string | RegExp) : RegExpMatchArray | null;

<!-- UTSJSON.String.match.description -->

<!-- UTSJSON.String.match.param -->

<!-- UTSJSON.String.match.returnValue -->

M
mahaifeng 已提交
200 201
<!-- UTSJSON.String.match.test -->

杜庆泉's avatar
杜庆泉 已提交
202 203
<!-- UTSJSON.String.match.compatibility -->

D
DCloud_LXH 已提交
204 205 206 207 208 209 210 211
### replace(searchValue, replaceValue)

<!-- UTSJSON.String.replace.description -->

<!-- UTSJSON.String.replace.param -->

<!-- UTSJSON.String.replace.returnValue -->

M
mahaifeng 已提交
212
<!-- UTSJSON.String.replace.test -->
D
DCloud_LXH 已提交
213 214 215 216 217 218 219 220 221 222 223

<!-- UTSJSON.String.replace.compatibility -->

### replace(searchValue, replacer)

<!-- UTSJSON.String.replace_1.description -->

<!-- UTSJSON.String.replace_1.param -->

<!-- UTSJSON.String.replace_1.returnValue -->

M
mahaifeng 已提交
224
<!-- UTSJSON.String.replace_1.test -->
D
DCloud_LXH 已提交
225

M
mahaifeng 已提交
226
<!-- UTSJSON.String.replace_1.compatibility -->
D
DCloud_LXH 已提交
227 228


D
DCloud_LXH 已提交
229 230 231 232 233 234 235 236
### search(regexp)

<!-- UTSJSON.String.search.description -->

<!-- UTSJSON.String.search.param -->

<!-- UTSJSON.String.search.returnValue -->

M
mahaifeng 已提交
237
<!-- UTSJSON.String.search.test -->
D
DCloud_LXH 已提交
238 239 240 241 242 243 244 245 246 247 248

<!-- UTSJSON.String.search.compatibility -->

### slice(start?, end?)

<!-- UTSJSON.String.slice.description -->

<!-- UTSJSON.String.slice.param -->

<!-- UTSJSON.String.slice.returnValue -->

M
mahaifeng 已提交
249
<!-- UTSJSON.String.slice.test -->
D
DCloud_LXH 已提交
250 251 252 253 254 255 256 257 258 259 260

<!-- UTSJSON.String.slice.compatibility -->

### split(separator, limit?)

<!-- UTSJSON.String.split.description -->

<!-- UTSJSON.String.split.param -->

<!-- UTSJSON.String.split.returnValue -->

M
mahaifeng 已提交
261
<!-- UTSJSON.String.split.test -->
D
DCloud_LXH 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297

<!-- UTSJSON.String.split.compatibility -->

### substring(start, end?)

<!-- UTSJSON.String.substring.description -->

<!-- UTSJSON.String.substring.param -->

<!-- UTSJSON.String.substring.returnValue -->

<!-- UTSJSON.String.substring.compatibility -->


**bug&tips**

当前版本android平台 start 与 end 参数声明为Int, 需要将number 参数转换为int

```uts
let a = 1
let b = 2
// 临时解决办法
"hello uts".substring(a.toInt(),b.toInt())
```

这个问题后续会修复


### toLowerCase()

<!-- UTSJSON.String.toLowerCase.description -->

<!-- UTSJSON.String.toLowerCase.param -->

<!-- UTSJSON.String.toLowerCase.returnValue -->

M
mahaifeng 已提交
298
<!-- UTSJSON.String.toLowerCase.test -->
D
DCloud_LXH 已提交
299 300 301

<!-- UTSJSON.String.toLowerCase.compatibility -->

D
DCloud_LXH 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315
### toLocaleLowerCase(locales?)

<!-- UTSJSON.String.toLocaleLowerCase.description -->

<!-- UTSJSON.String.toLocaleLowerCase.param -->

<!-- UTSJSON.String.toLocaleLowerCase.returnValue -->

<!-- UTSJSON.String.toLocaleLowerCase.test -->

<!-- UTSJSON.String.toLocaleLowerCase.compatibility -->

<!-- UTSJSON.String.toLocaleLowerCase.tutorial -->

D
DCloud_LXH 已提交
316 317 318 319 320 321 322 323
### toUpperCase()

<!-- UTSJSON.String.toUpperCase.description -->

<!-- UTSJSON.String.toUpperCase.param -->

<!-- UTSJSON.String.toUpperCase.returnValue -->

M
mahaifeng 已提交
324
<!-- UTSJSON.String.toUpperCase.test -->
D
DCloud_LXH 已提交
325 326 327

<!-- UTSJSON.String.toUpperCase.compatibility -->

D
DCloud_LXH 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341
### toLocaleUpperCase(locales?)

<!-- UTSJSON.String.toLocaleUpperCase.description -->

<!-- UTSJSON.String.toLocaleUpperCase.param -->

<!-- UTSJSON.String.toLocaleUpperCase.returnValue -->

<!-- UTSJSON.String.toLocaleUpperCase.test -->

<!-- UTSJSON.String.toLocaleUpperCase.compatibility -->

<!-- UTSJSON.String.toLocaleUpperCase.tutorial -->

D
DCloud_LXH 已提交
342 343 344 345 346 347 348 349
### trim()

<!-- UTSJSON.String.trim.description -->

<!-- UTSJSON.String.trim.param -->

<!-- UTSJSON.String.trim.returnValue -->

M
mahaifeng 已提交
350 351
<!-- UTSJSON.String.trim.test -->

D
DCloud_LXH 已提交
352 353
<!-- UTSJSON.String.trim.compatibility -->

D
DCloud_LXH 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367
### substr(from, length?)

<!-- UTSJSON.String.substr.description -->

<!-- UTSJSON.String.substr.param -->

<!-- UTSJSON.String.substr.returnValue -->

<!-- UTSJSON.String.substr.test -->

<!-- UTSJSON.String.substr.compatibility -->

<!-- UTSJSON.String.substr.tutorial -->

D
DCloud_LXH 已提交
368 369 370 371 372 373 374 375
### padStart(targetLength, padString?)

<!-- UTSJSON.String.padStart.description -->

<!-- UTSJSON.String.padStart.param -->

<!-- UTSJSON.String.padStart.returnValue -->

M
mahaifeng 已提交
376 377
<!-- UTSJSON.String.padStart.test -->

D
DCloud_LXH 已提交
378 379
<!-- UTSJSON.String.padStart.compatibility -->

380

D
DCloud_LXH 已提交
381 382 383 384 385 386 387 388
### padEnd(targetLength, padString?)

<!-- UTSJSON.String.padEnd.description -->

<!-- UTSJSON.String.padEnd.param -->

<!-- UTSJSON.String.padEnd.returnValue -->

M
mahaifeng 已提交
389 390
<!-- UTSJSON.String.padEnd.test -->

D
DCloud_LXH 已提交
391 392
<!-- UTSJSON.String.padEnd.compatibility -->

393

D
DCloud_LXH 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
### codePointAt(pos)

<!-- UTSJSON.String.codePointAt.description -->

<!-- UTSJSON.String.codePointAt.param -->

<!-- UTSJSON.String.codePointAt.returnValue -->

<!-- UTSJSON.String.codePointAt.test -->

<!-- UTSJSON.String.codePointAt.compatibility -->

<!-- UTSJSON.String.codePointAt.tutorial -->

### normalize(form)

<!-- UTSJSON.String.normalize.description -->

<!-- UTSJSON.String.normalize.param -->

<!-- UTSJSON.String.normalize.returnValue -->

<!-- UTSJSON.String.normalize.test -->

<!-- UTSJSON.String.normalize.compatibility -->

<!-- UTSJSON.String.normalize.tutorial -->

### normalize(form?)

<!-- UTSJSON.String.normalize_1.description -->

<!-- UTSJSON.String.normalize_1.param -->

<!-- UTSJSON.String.normalize_1.returnValue -->

<!-- UTSJSON.String.normalize_1.test -->

<!-- UTSJSON.String.normalize_1.compatibility -->

<!-- UTSJSON.String.normalize_1.tutorial -->

杜庆泉's avatar
杜庆泉 已提交
436 437 438 439 440 441 442 443
### isWellFormed()

<!-- UTSJSON.String.isWellFormed.description -->

<!-- UTSJSON.String.isWellFormed.param -->

<!-- UTSJSON.String.isWellFormed.returnValue -->

M
mahaifeng 已提交
444 445
<!-- UTSJSON.String.isWellFormed.test -->

杜庆泉's avatar
杜庆泉 已提交
446 447 448 449 450 451 452 453 454 455
<!-- UTSJSON.String.isWellFormed.compatibility -->

### toWellFormed()

<!-- UTSJSON.String.toWellFormed.description -->

<!-- UTSJSON.String.toWellFormed.param -->

<!-- UTSJSON.String.toWellFormed.returnValue -->

M
mahaifeng 已提交
456
<!-- UTSJSON.String.toWellFormed.test -->
D
DCloud_LXH 已提交
457

M
mahaifeng 已提交
458
<!-- UTSJSON.String.toWellFormed.compatibility -->
杜庆泉's avatar
杜庆泉 已提交
459

D
DCloud_LXH 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
### toCharArray()

<!-- UTSJSON.String.toCharArray.description -->

<!-- UTSJSON.String.toCharArray.param -->

<!-- UTSJSON.String.toCharArray.returnValue -->

<!-- UTSJSON.String.toCharArray.test -->

<!-- UTSJSON.String.toCharArray.compatibility -->

<!-- UTSJSON.String.toCharArray.tutorial -->

### valueOf()

<!-- UTSJSON.String.valueOf.description -->

<!-- UTSJSON.String.valueOf.param -->

<!-- UTSJSON.String.valueOf.returnValue -->

<!-- UTSJSON.String.valueOf.test -->

<!-- UTSJSON.String.valueOf.compatibility -->

<!-- UTSJSON.String.valueOf.tutorial -->

### anchor(name)

<!-- UTSJSON.String.anchor.description -->

<!-- UTSJSON.String.anchor.param -->

<!-- UTSJSON.String.anchor.returnValue -->

<!-- UTSJSON.String.anchor.test -->

<!-- UTSJSON.String.anchor.compatibility -->

<!-- UTSJSON.String.anchor.tutorial -->

### big()

<!-- UTSJSON.String.big.description -->

<!-- UTSJSON.String.big.param -->

<!-- UTSJSON.String.big.returnValue -->

<!-- UTSJSON.String.big.test -->

<!-- UTSJSON.String.big.compatibility -->

<!-- UTSJSON.String.big.tutorial -->

### blink()

<!-- UTSJSON.String.blink.description -->

<!-- UTSJSON.String.blink.param -->

<!-- UTSJSON.String.blink.returnValue -->

<!-- UTSJSON.String.blink.test -->

<!-- UTSJSON.String.blink.compatibility -->

<!-- UTSJSON.String.blink.tutorial -->

### bold()

<!-- UTSJSON.String.bold.description -->

<!-- UTSJSON.String.bold.param -->

<!-- UTSJSON.String.bold.returnValue -->

<!-- UTSJSON.String.bold.test -->

<!-- UTSJSON.String.bold.compatibility -->

<!-- UTSJSON.String.bold.tutorial -->

### fixed()

<!-- UTSJSON.String.fixed.description -->

<!-- UTSJSON.String.fixed.param -->

<!-- UTSJSON.String.fixed.returnValue -->

<!-- UTSJSON.String.fixed.test -->

<!-- UTSJSON.String.fixed.compatibility -->

<!-- UTSJSON.String.fixed.tutorial -->

### fontcolor(color)

<!-- UTSJSON.String.fontcolor.description -->

<!-- UTSJSON.String.fontcolor.param -->

<!-- UTSJSON.String.fontcolor.returnValue -->

<!-- UTSJSON.String.fontcolor.test -->

<!-- UTSJSON.String.fontcolor.compatibility -->

<!-- UTSJSON.String.fontcolor.tutorial -->

### fontsize(size)

<!-- UTSJSON.String.fontsize.description -->

<!-- UTSJSON.String.fontsize.param -->

<!-- UTSJSON.String.fontsize.returnValue -->

<!-- UTSJSON.String.fontsize.test -->

<!-- UTSJSON.String.fontsize.compatibility -->

<!-- UTSJSON.String.fontsize.tutorial -->

### fontsize(size)

<!-- UTSJSON.String.fontsize_1.description -->

<!-- UTSJSON.String.fontsize_1.param -->

<!-- UTSJSON.String.fontsize_1.returnValue -->

<!-- UTSJSON.String.fontsize_1.test -->

<!-- UTSJSON.String.fontsize_1.compatibility -->

<!-- UTSJSON.String.fontsize_1.tutorial -->

### italics()

<!-- UTSJSON.String.italics.description -->

<!-- UTSJSON.String.italics.param -->

<!-- UTSJSON.String.italics.returnValue -->

<!-- UTSJSON.String.italics.test -->

<!-- UTSJSON.String.italics.compatibility -->

<!-- UTSJSON.String.italics.tutorial -->

### link(url)

<!-- UTSJSON.String.link.description -->

<!-- UTSJSON.String.link.param -->

<!-- UTSJSON.String.link.returnValue -->

<!-- UTSJSON.String.link.test -->

<!-- UTSJSON.String.link.compatibility -->

<!-- UTSJSON.String.link.tutorial -->

### small()

<!-- UTSJSON.String.small.description -->

<!-- UTSJSON.String.small.param -->

<!-- UTSJSON.String.small.returnValue -->

<!-- UTSJSON.String.small.test -->

<!-- UTSJSON.String.small.compatibility -->

<!-- UTSJSON.String.small.tutorial -->

### strike()

<!-- UTSJSON.String.strike.description -->

<!-- UTSJSON.String.strike.param -->

<!-- UTSJSON.String.strike.returnValue -->

<!-- UTSJSON.String.strike.test -->

<!-- UTSJSON.String.strike.compatibility -->

<!-- UTSJSON.String.strike.tutorial -->

### sub()

<!-- UTSJSON.String.sub.description -->

<!-- UTSJSON.String.sub.param -->

<!-- UTSJSON.String.sub.returnValue -->

<!-- UTSJSON.String.sub.test -->

<!-- UTSJSON.String.sub.compatibility -->

<!-- UTSJSON.String.sub.tutorial -->

### sup()

<!-- UTSJSON.String.sup.description -->

<!-- UTSJSON.String.sup.param -->

<!-- UTSJSON.String.sup.returnValue -->

<!-- UTSJSON.String.sup.test -->

<!-- UTSJSON.String.sup.compatibility -->

<!-- UTSJSON.String.sup.tutorial -->


<!-- UTSJSON.String.tutorial -->
杜庆泉's avatar
杜庆泉 已提交
686

杜庆泉's avatar
杜庆泉 已提交
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
## 静态方法

### fromCharCode(...codes : number[]):string

<!-- UTSJSON.String.fromCharCode.description -->

<!-- UTSJSON.String.fromCharCode.param -->

<!-- UTSJSON.String.fromCharCode.returnValue -->

<!-- UTSJSON.String.fromCharCode.test -->

<!-- UTSJSON.String.fromCharCode.compatibility -->


杜庆泉's avatar
杜庆泉 已提交
702
## Android 平台实现
703 704

* 目前 string 类型编译到 kotlin 为 kotlin.String