C#中用什么函数可以返回某一字符串从另一字符串的左/右侧开始算起第一次出现的位置 C#

例如,VB中:DimstrsdeAsStringstrsde="456123.25"DimposAsLongpos=InStrRev(strsde,&... 例如,VB中: Dim strsde As String strsde= "456123.25 " Dim pos As Long pos = InStrRev(strsde, ". ") 其中,InStrRev函数:返回某一字符串从另一字符串的右侧开始算起第一次出现的位置. 在C#里应怎样实现 大侠帮忙啊...... string strsde = "456123.25 "; long pos = strsde.IndexOf( ". "); 展开
 我来答
TTT哣
2014-07-09 · TA获得超过156个赞
知道答主
回答量:117
采纳率:0%
帮助的人:66.1万
展开全部
using System;using System.Collections;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using Microsoft.VisualBasic;using Microsoft.VisualBasic.CompilerServices;namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); test(); } private void test() { string str="abcdefghijklmnopqrstuvwxyz"; label1.Text = Strings.Left(str, 5); label2.Text = Strings.Right(str, 5); label3.Text = str.Substring(0,5);//Left label4.Text = str.Substring(str.Length - 5);//Right } }} 查看原帖>>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式