با سلام و سپاس خدمت شما سروران عزیز
امروز با تکه کدی کاربردی در خدمتتون هستیم.
با این تکه کد شما میتونید تمامی مواردی که در یک خط نوشته شده رو جوری که میخواهید جداسازی کنید.
در این Replace ما اومدیم دستور crlf رو وارد کردیم و بعد در یک txt اون ها رو اومدیم رایت کردیم به صورت زیر .
#Region Project Attributes #ApplicationLabel: B4A Example #VersionCode: 1 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: portrait #CanInstallToExternalStorage: False #End Region #Region Activity Attributes #FullScreen: False #IncludeTitle: True #End Region Sub Process_Globals 'These global variables will be declared once when the application starts. 'These variables can be accessed from all modules. End Sub Sub Globals 'These global variables will be redeclared each time the activity is created. 'These variables can only be accessed from this module. Dim Label1,Label2 As Label End Sub Sub Activity_Create(FirstTime As Boolean) 'Do not forget to load the layout file created with the visual designer. For example: Activity.LoadLayout("1") Label1.Text="سلمان&سید&یاهو ۹۸" Label2.Text= Label1.Text.Replace("&",CRLF) File.WriteString(File.DirRootExternal,"1.txt",Label1.Text.Replace("&",CRLF)) End Sub Sub Activity_Resume End Sub Sub Activity_Pause (UserClosed As Boolean) End Sub
موفق باشید.