在c#中拆分字符串而不使用拆分功能

在c#中拆分字符串而不使用拆分功能

本文介绍了在c#中拆分字符串而不使用拆分功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我准备接受采访请帮我完成一些任务...

1.我需要一个程序来分解字符串而不使用溢出功能。



示例:

String S1 =Code,Project.C,om


我需要一个程序显示输出如

代码

项目

C

om




2.我想用c#显示字符串的最后两个字符。



示例:

字符串S2 =DotNetDeveloper

i需要输出才能显示最后三个字符



输出为





我希望我的问题清楚

Hi i am preparing for an interview please help me in some tasks...
1.I need a program to split the string with out using spilt function.

Example:
String S1="Code,Project.C,om"

I need a program to display an output like
Code
Project
C
om


2. I want to display the last two characters of my string using c#.

Example :
String S2="DotNetDeveloper"
i need an output to display only last three charaters

Output as
per

I hope my question is clear

推荐答案


这篇关于在c#中拆分字符串而不使用拆分功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 09:27