LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any String variable or something what have input and output data?

Solved!
Go to solution

Is there any String variable or something what have input and output data?

0 Kudos
Message 1 of 11
(4,626 Views)

What exactly are you trying to do?  Depending on the application, there are many ways to do what you want.  But at the simplest of applications, sounds like you just want to use a local variable of your control in order to update it.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 2 of 11
(4,614 Views)

I have a "A"String and i want to merge this "A"String with  an other "B"String and I want to get it back to the "A" String 

0 Kudos
Message 3 of 11
(4,610 Views)

I'm not even sure I understand your question.

 

Please follow this link and go to the Looking For Free Training section.  If you still have a question after following the links located there, maybe you'll at least have learned enough about LabVIEW to elaborate on your question.

 

Or maybe you aren't posting in your native language so it's difficult for me to understand what you are asking?

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 4 of 11
(4,609 Views)

@elefank wrote:

I have a "A"String and i want to merge this "A"String  an other "B"String and I want to get it back to the "A" String 


I would store the A String in a shift register and then you can use Concatinate Strings whenever you want to add the additional characters to it.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 5 of 11
(4,602 Views)

in other programming language I can do that

String1=String1+String2;

that' what i want to do

0 Kudos
Message 6 of 11
(4,589 Views)

Hi elefank,

 

as has been said before: use a shift register to store your String1.

 

This is taught in the free online LabVIEW beginner courses at NI.com - just give them a try!

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 7 of 11
(4,577 Views)
Solution
Accepted by topic author elefank

I give up this! Everything too complicated for me I stay focus on characteristic programming language.

0 Kudos
Message 8 of 11
(4,567 Views)

Hi elefank,

 

why do you give up here? Have you even tried those free online courses?

 

String1=String1+String2;

In LabVIEW this could look like this:

check.png

(Using a feedback node as replacement of the shift register. THINK DATAFLOW!)

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 9 of 11
(4,563 Views)

@elefank wrote:

I give up this! Everything too complicated for me I stay focus on characteristic programming language.


You give up way too easily.  Concatinate Strings will combine your strings.  You then just need a way to store your value.  I recommended a shift register.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 10 of 11
(4,557 Views)